aboutsummaryrefslogtreecommitdiffstats
path: root/recipes
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-04-29 19:55:52 +0530
committerLibravatar GitHub <noreply@github.com>2021-04-29 14:25:52 +0000
commitfae35abda2953e38106fccd12c7d34226bb54a7c (patch)
tree3cb6b82fea0a20520b5ad71169814aa4686261dc /recipes
parentUpdate Element recipe (#479) (diff)
downloadferdium-recipes-fae35abda2953e38106fccd12c7d34226bb54a7c.tar.gz
ferdium-recipes-fae35abda2953e38106fccd12c7d34226bb54a7c.tar.zst
ferdium-recipes-fae35abda2953e38106fccd12c7d34226bb54a7c.zip
Fixing issue with image preview not working in gChat. (#476)
Diffstat (limited to 'recipes')
-rw-r--r--recipes/hangoutschat/index.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/recipes/hangoutschat/index.js b/recipes/hangoutschat/index.js
index 819e06b..2c8b220 100644
--- a/recipes/hangoutschat/index.js
+++ b/recipes/hangoutschat/index.js
@@ -3,20 +3,4 @@ var os = require('os')
3// just pass through Franz 3// just pass through Franz
4module.exports = Franz => 4module.exports = Franz =>
5 class HangoutsChat extends Franz { 5 class HangoutsChat extends Franz {
6 // Method to add headers to requests from Hangouts Chat's webview
7 modifyRequestHeaders() {
8 return [{
9 headers: { 'origin': 'https://chat.google.com' },
10 requestFilters: {
11 urls: ['*://*/*']
12 }
13 }]
14 }
15
16 overrideUserAgent() {
17 if (os.platform() == 'linux')
18 return "Mozilla/5.0 (X11; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0"
19 else
20 return "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:72.0) Gecko/20100101 Firefox/72.0";
21 }
22 }; 6 };