aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/googledrive
diff options
context:
space:
mode:
Diffstat (limited to 'uncompressed/googledrive')
-rw-r--r--uncompressed/googledrive/README.md16
-rw-r--r--uncompressed/googledrive/icon.pngbin204548 -> 0 bytes
-rw-r--r--uncompressed/googledrive/icon.svg1
-rw-r--r--uncompressed/googledrive/index.js18
-rw-r--r--uncompressed/googledrive/package.json25
-rw-r--r--uncompressed/googledrive/service.css5
-rw-r--r--uncompressed/googledrive/webview.js16
7 files changed, 0 insertions, 81 deletions
diff --git a/uncompressed/googledrive/README.md b/uncompressed/googledrive/README.md
deleted file mode 100644
index 2304ba2..0000000
--- a/uncompressed/googledrive/README.md
+++ /dev/null
@@ -1,16 +0,0 @@
1# Google Drive for Franz
2
3Google Drive Recipe for [Franz](http://meetfranz.com), fixed for files not being displayed.
4
5### Installation
6
71. Download/clone this repo to your computer
8
92. Copy the recipe folder to the following location (you may need to create the `dev` folder):
10* Mac: `~/Library/Application Support/Franz/recipes/dev/`
11* Windows: `%appdata%/Franz/recipes/dev/`
12* Linux: `~/.config/Franz/recipes/dev`
13
143. Relaod Franz
15
164. Navigate to "Add Service -> Development" section in Franz. \ No newline at end of file
diff --git a/uncompressed/googledrive/icon.png b/uncompressed/googledrive/icon.png
deleted file mode 100644
index 98a647a..0000000
--- a/uncompressed/googledrive/icon.png
+++ /dev/null
Binary files differ
diff --git a/uncompressed/googledrive/icon.svg b/uncompressed/googledrive/icon.svg
deleted file mode 100644
index c7711c2..0000000
--- a/uncompressed/googledrive/icon.svg
+++ /dev/null
@@ -1 +0,0 @@
1<svg viewBox="0 0 139 120.4" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><radialGradient id="a" cx="-254.81979" cy="705.83588" gradientTransform="matrix(2.827 1.6322 -1.6322 2.827 2092.1199 -1494.5786)" gradientUnits="userSpaceOnUse" r="82.978401"><stop offset="0" stop-color="#4387fd"/><stop offset=".65" stop-color="#3078f0"/><stop offset=".9099" stop-color="#2b72ea"/><stop offset="1" stop-color="#286ee6"/></radialGradient><radialGradient id="b" cx="-254.8174" cy="705.83691" gradientTransform="matrix(2.827 1.6322 -1.6322 2.827 2092.1199 -1494.5786)" gradientUnits="userSpaceOnUse" r="82.973"><stop offset="0" stop-color="#ffd24d"/><stop offset="1" stop-color="#f6c338"/></radialGradient><path d="m24.2 120.4-24.2-41.9 45.3-78.5 24.2 41.9z" fill="#0da960"/><path d="m24.2 120.4 24.2-41.9h90.6l-24.2 41.9z" fill="url(#a)"/><path d="m139 78.5h-48.4l-45.3-78.5h48.4z" fill="url(#b)"/><path d="m69.5 78.5h-21.1l10.5-18.3-34.7 60.2z" fill="#2d6fdd"/><path d="m90.6 78.5h48.4l-58.9-18.3z" fill="#e5b93c"/><path d="m58.9 60.2 10.6-18.3-24.2-41.9z" fill="#0c9b57"/></svg> \ No newline at end of file
diff --git a/uncompressed/googledrive/index.js b/uncompressed/googledrive/index.js
deleted file mode 100644
index aacc1ac..0000000
--- a/uncompressed/googledrive/index.js
+++ /dev/null
@@ -1,18 +0,0 @@
1var os = require('os')
2
3module.exports = Franz =>
4 class googledrive extends Franz {
5 modifyRequestHeaders() {
6 return [
7 {
8 headers: {
9 'user-agent': window.navigator.userAgent.replace(/(Ferdi|Electron)\/\S+ \([^)]+\)/g, '').trim(),
10 'origin': 'https://drive.google.com'
11 },
12 requestFilters: {
13 urls: ['*://*/*'],
14 },
15 },
16 ];
17 }
18 };
diff --git a/uncompressed/googledrive/package.json b/uncompressed/googledrive/package.json
deleted file mode 100644
index 755dcff..0000000
--- a/uncompressed/googledrive/package.json
+++ /dev/null
@@ -1,25 +0,0 @@
1{
2 "id": "googledrive",
3 "name": "Google Drive",
4 "version": "1.0.5",
5 "description": "Google Drive",
6 "main": "index.js",
7 "author": "Djonathan Goulart<d.goulart@outlook.com.br>",
8 "repository": "https://github.com/BrianGilbert/franz-recipe-tawk",
9 "license": "MIT",
10 "config": {
11 "serviceURL": "https://drive.google.com/",
12 "serviceName": "Google Drive",
13 "message": "",
14 "popup": [],
15 "hasNotificationSound": false,
16 "hasIndirectMessages": false,
17 "hasTeamID": false,
18 "customURL": false,
19 "hostedOnly": false,
20 "webviewOptions": {
21 "disablewebsecurity": ""
22 },
23 "openDevTools": false
24 }
25}
diff --git a/uncompressed/googledrive/service.css b/uncompressed/googledrive/service.css
deleted file mode 100644
index b453fd4..0000000
--- a/uncompressed/googledrive/service.css
+++ /dev/null
@@ -1,5 +0,0 @@
1.app-wrapper-web .app {
2 width: 100% !important;
3 height: 100% !important;
4 top: 0 !important;
5}
diff --git a/uncompressed/googledrive/webview.js b/uncompressed/googledrive/webview.js
deleted file mode 100644
index 64a0219..0000000
--- a/uncompressed/googledrive/webview.js
+++ /dev/null
@@ -1,16 +0,0 @@
1module.exports = (Franz, options) => {
2 window.chrome = {
3 runtime: {
4 connect: () => {
5 return {
6 onMessage: {
7 addListener: () => {console.warn('chrome.runtime is not implemented')},
8 removeListener: () => {console.warn('chrome.runtime is not implemented')},
9 },
10 postMessage: () => {console.warn('chrome.runtime is not implemented')},
11 disconnect: () => {console.warn('chrome.runtime is not implemented')},
12 }
13 }
14 }
15 }
16} \ No newline at end of file