aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/googlekeep
diff options
context:
space:
mode:
authorLibravatar Bennett <hello@vantezzen.io>2020-09-22 20:56:48 +0200
committerLibravatar GitHub <noreply@github.com>2020-09-22 19:56:48 +0100
commit6f5e4a00588aefdda7a5a1cfe70935870e7e234a (patch)
tree9e29aa7aa0620a1a4a968ff8739b4b8ba96791a9 /recipes/googlekeep
parentUpdated logos for Outlook/OWA (diff)
downloadferdium-recipes-6f5e4a00588aefdda7a5a1cfe70935870e7e234a.tar.gz
ferdium-recipes-6f5e4a00588aefdda7a5a1cfe70935870e7e234a.tar.zst
ferdium-recipes-6f5e4a00588aefdda7a5a1cfe70935870e7e234a.zip
Unpack recipes and update recipes icons (#292)
Co-authored-by: Amine Mouafik <amine@mouafik.fr>
Diffstat (limited to 'recipes/googlekeep')
-rw-r--r--recipes/googlekeep/LICENSE7
-rw-r--r--recipes/googlekeep/README.md19
-rw-r--r--recipes/googlekeep/icon.pngbin0 -> 9729 bytes
-rw-r--r--recipes/googlekeep/icon.svg9
-rw-r--r--recipes/googlekeep/index.js11
-rw-r--r--recipes/googlekeep/package.json12
-rw-r--r--recipes/googlekeep/webview.js2
7 files changed, 60 insertions, 0 deletions
diff --git a/recipes/googlekeep/LICENSE b/recipes/googlekeep/LICENSE
new file mode 100644
index 0000000..8d55d49
--- /dev/null
+++ b/recipes/googlekeep/LICENSE
@@ -0,0 +1,7 @@
1Copyright 2017 SiloCityLabs LLC
2
3Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
5The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
7THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file
diff --git a/recipes/googlekeep/README.md b/recipes/googlekeep/README.md
new file mode 100644
index 0000000..be8cd79
--- /dev/null
+++ b/recipes/googlekeep/README.md
@@ -0,0 +1,19 @@
1# Google Keep Franz Plugin
2
3## Requirements
4This recipe only works for Franz 5.X, get it now at http://meetfranz.com
5
6## Installation
7
81. Clone/download the folder `recipe-franz-googlekeep`.
9
102. Open the Franz Recipe folder on your machine:
11 * Mac: `~/Library/Application Support/Franz/recipes/`
12 * Windows: `%appdata%/Franz/recipes/`
13 * Linux: `~/.config/Franz/recipes/`
14
153. Create a `dev` folder if you have not already done so
16
173. Unzip and copy the `recipe-franz-googlekeep` folder into the recipes dev directory
18
194. Restart Franz
diff --git a/recipes/googlekeep/icon.png b/recipes/googlekeep/icon.png
new file mode 100644
index 0000000..95beb3c
--- /dev/null
+++ b/recipes/googlekeep/icon.png
Binary files differ
diff --git a/recipes/googlekeep/icon.svg b/recipes/googlekeep/icon.svg
new file mode 100644
index 0000000..7ca32ff
--- /dev/null
+++ b/recipes/googlekeep/icon.svg
@@ -0,0 +1,9 @@
1<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48 48" version="1.1" width="528" height="528">
2<g id="surface1">
3<path style=" fill:#FFC107;" d="M 9 42 L 32 42 L 42 32 L 42 9 C 42 7.34375 40.65625 6 39 6 L 9 6 C 7.34375 6 6 7.34375 6 9 L 6 39 C 6 40.65625 7.34375 42 9 42 Z "/>
4<path style=" fill:#FFECB3;" d="M 32 42 L 32 32 L 42 32 Z "/>
5<path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:#FFFFFF;stroke-opacity:1;stroke-miterlimit:10;" d="M 32 20 C 32 15.582031 28.417969 12 24 12 C 19.582031 12 16 15.582031 16 20 C 16 23.355469 18.070313 26.226563 21 27.414063 L 21 35 L 27 35 L 27 27.414063 C 29.929688 26.226563 32 23.355469 32 20 Z "/>
6<path style=" fill:#FFFFFF;" d="M 22 35 L 26 35 L 26 38 L 22 38 Z "/>
7<path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:#FFFFFF;stroke-opacity:1;stroke-miterlimit:10;" d="M 21 31 L 27 31 "/>
8</g>
9</svg> \ No newline at end of file
diff --git a/recipes/googlekeep/index.js b/recipes/googlekeep/index.js
new file mode 100644
index 0000000..96e3615
--- /dev/null
+++ b/recipes/googlekeep/index.js
@@ -0,0 +1,11 @@
1var os = require('os')
2
3module.exports = Franz =>
4 class googlekeep extends Franz {
5 overrideUserAgent() {
6 if (os.platform() == 'linux')
7 return "Mozilla/5.0 (X11; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0"
8 else
9 return "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:72.0) Gecko/20100101 Firefox/72.0";
10 }
11 };
diff --git a/recipes/googlekeep/package.json b/recipes/googlekeep/package.json
new file mode 100644
index 0000000..d06fe09
--- /dev/null
+++ b/recipes/googlekeep/package.json
@@ -0,0 +1,12 @@
1{
2 "id": "googlekeep",
3 "name": "Google Keep",
4 "version": "1.0.3",
5 "description": "Google Keep",
6 "main": "index.js",
7 "author": "SiloCityLabs LLC",
8 "license": "MIT",
9 "config": {
10 "serviceURL": "https://keep.google.com/"
11 }
12}
diff --git a/recipes/googlekeep/webview.js b/recipes/googlekeep/webview.js
new file mode 100644
index 0000000..e1c06d0
--- /dev/null
+++ b/recipes/googlekeep/webview.js
@@ -0,0 +1,2 @@
1"use strict";
2//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJnb29nbGVrZWVwL3dlYnZpZXcuanMiLCJzb3VyY2VzQ29udGVudCI6W119 \ No newline at end of file