aboutsummaryrefslogtreecommitdiffstats
path: root/uncompressed/hangoutschat
diff options
context:
space:
mode:
Diffstat (limited to 'uncompressed/hangoutschat')
-rw-r--r--uncompressed/hangoutschat/index.js10
-rw-r--r--uncompressed/hangoutschat/package.json2
2 files changed, 11 insertions, 1 deletions
diff --git a/uncompressed/hangoutschat/index.js b/uncompressed/hangoutschat/index.js
index 95e7fa5..819e06b 100644
--- a/uncompressed/hangoutschat/index.js
+++ b/uncompressed/hangoutschat/index.js
@@ -3,6 +3,16 @@ 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
6 overrideUserAgent() { 16 overrideUserAgent() {
7 if (os.platform() == 'linux') 17 if (os.platform() == 'linux')
8 return "Mozilla/5.0 (X11; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0" 18 return "Mozilla/5.0 (X11; Linux x86_64; rv:72.0) Gecko/20100101 Firefox/72.0"
diff --git a/uncompressed/hangoutschat/package.json b/uncompressed/hangoutschat/package.json
index 40b0357..bcc58f9 100644
--- a/uncompressed/hangoutschat/package.json
+++ b/uncompressed/hangoutschat/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "hangoutschat", 2 "id": "hangoutschat",
3 "name": "Hangouts Chat", 3 "name": "Hangouts Chat",
4 "version": "1.2.3", 4 "version": "1.3.0",
5 "description": "Hangouts Chat", 5 "description": "Hangouts Chat",
6 "main": "index.js", 6 "main": "index.js",
7 "author": "Stefan Malzner <stefan@adlk.io> and Iván López (ilopmar)", 7 "author": "Stefan Malzner <stefan@adlk.io> and Iván López (ilopmar)",