aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2020-06-01 16:10:13 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2020-06-01 16:10:13 +0200
commit4c722d64870457dd3c8a3b7446800f200e211edc (patch)
treecf464142860b26436a68326740f722e03da7e23c /uncompressed
parentFix for packaging not allowing numbers in recipe ids (#158) (diff)
parentRepackage #188 (diff)
downloadferdium-recipes-4c722d64870457dd3c8a3b7446800f200e211edc.tar.gz
ferdium-recipes-4c722d64870457dd3c8a3b7446800f200e211edc.tar.zst
ferdium-recipes-4c722d64870457dd3c8a3b7446800f200e211edc.zip
Merge branch 'pr/188'
Diffstat (limited to 'uncompressed')
-rw-r--r--uncompressed/googledrive/icon.pngbin11492 -> 204548 bytes
-rw-r--r--uncompressed/googledrive/index.js17
-rw-r--r--uncompressed/googledrive/package.json2
3 files changed, 13 insertions, 6 deletions
diff --git a/uncompressed/googledrive/icon.png b/uncompressed/googledrive/icon.png
index 19fff5f..98a647a 100644
--- a/uncompressed/googledrive/icon.png
+++ b/uncompressed/googledrive/icon.png
Binary files differ
diff --git a/uncompressed/googledrive/index.js b/uncompressed/googledrive/index.js
index 9c4da64..aacc1ac 100644
--- a/uncompressed/googledrive/index.js
+++ b/uncompressed/googledrive/index.js
@@ -2,10 +2,17 @@ var os = require('os')
2 2
3module.exports = Franz => 3module.exports = Franz =>
4 class googledrive extends Franz { 4 class googledrive extends Franz {
5 overrideUserAgent() { 5 modifyRequestHeaders() {
6 if (os.platform() == 'linux') 6 return [
7 return "Mozilla/5.0 (X11; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0" 7 {
8 else 8 headers: {
9 return "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:72.0) Gecko/20100101 Firefox/72.0"; 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 ];
10 } 17 }
11 }; 18 };
diff --git a/uncompressed/googledrive/package.json b/uncompressed/googledrive/package.json
index 5b97042..755dcff 100644
--- a/uncompressed/googledrive/package.json
+++ b/uncompressed/googledrive/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "googledrive", 2 "id": "googledrive",
3 "name": "Google Drive", 3 "name": "Google Drive",
4 "version": "1.0.3", 4 "version": "1.0.5",
5 "description": "Google Drive", 5 "description": "Google Drive",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Djonathan Goulart<d.goulart@outlook.com.br>", 7 "author": "Djonathan Goulart<d.goulart@outlook.com.br>",