aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/googlekeep
diff options
context:
space:
mode:
Diffstat (limited to 'uncompressed/googlekeep')
-rw-r--r--uncompressed/googlekeep/LICENSE7
-rw-r--r--uncompressed/googlekeep/README.md19
-rw-r--r--uncompressed/googlekeep/icon.svg9
-rw-r--r--uncompressed/googlekeep/index.js4
-rw-r--r--uncompressed/googlekeep/package.json12
-rw-r--r--uncompressed/googlekeep/webview.js2
6 files changed, 53 insertions, 0 deletions
diff --git a/uncompressed/googlekeep/LICENSE b/uncompressed/googlekeep/LICENSE
new file mode 100644
index 0000000..8d55d49
--- /dev/null
+++ b/uncompressed/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/uncompressed/googlekeep/README.md b/uncompressed/googlekeep/README.md
new file mode 100644
index 0000000..be8cd79
--- /dev/null
+++ b/uncompressed/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/uncompressed/googlekeep/icon.svg b/uncompressed/googlekeep/icon.svg
new file mode 100644
index 0000000..7ca32ff
--- /dev/null
+++ b/uncompressed/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/uncompressed/googlekeep/index.js b/uncompressed/googlekeep/index.js
new file mode 100644
index 0000000..d97fcff
--- /dev/null
+++ b/uncompressed/googlekeep/index.js
@@ -0,0 +1,4 @@
1"use strict";
2
3module.exports = Franz => Franz;
4//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbImdvb2dsZWtlZXAvaW5kZXguanMiXSwibmFtZXMiOlsibW9kdWxlIiwiZXhwb3J0cyIsIkZyYW56Il0sIm1hcHBpbmdzIjoiOztBQUFBQSxPQUFPQyxPQUFQLEdBQWlCQyxTQUFTQSxLQUExQiIsImZpbGUiOiJnb29nbGVrZWVwL2luZGV4LmpzIiwic291cmNlc0NvbnRlbnQiOlsibW9kdWxlLmV4cG9ydHMgPSBGcmFueiA9PiBGcmFuejsiXX0= \ No newline at end of file
diff --git a/uncompressed/googlekeep/package.json b/uncompressed/googlekeep/package.json
new file mode 100644
index 0000000..e3968bc
--- /dev/null
+++ b/uncompressed/googlekeep/package.json
@@ -0,0 +1,12 @@
1{
2 "id": "googlekeep",
3 "name": "Google Keep",
4 "version": "1.0.0",
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/uncompressed/googlekeep/webview.js b/uncompressed/googlekeep/webview.js
new file mode 100644
index 0000000..e1c06d0
--- /dev/null
+++ b/uncompressed/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