aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/chatgpt
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/chatgpt')
-rw-r--r--recipes/chatgpt/index.js37
-rw-r--r--recipes/chatgpt/package.json2
-rw-r--r--recipes/chatgpt/webview.js10
3 files changed, 31 insertions, 18 deletions
diff --git a/recipes/chatgpt/index.js b/recipes/chatgpt/index.js
index 80eaf51..1392dcb 100644
--- a/recipes/chatgpt/index.js
+++ b/recipes/chatgpt/index.js
@@ -1,18 +1,23 @@
1module.exports = (Ferdium) => class Messenger extends Ferdium { 1module.exports = Ferdium =>
2 overrideUserAgent() { 2 class Messenger extends Ferdium {
3 return window.navigator.userAgent.replace(/(Ferdium|Electron)\/\S+ \([^)]+\)/g, '').trim(); 3 overrideUserAgent() {
4 } 4 return window.navigator.userAgent
5 .replaceAll(/(Ferdium|Electron)\/\S+ \([^)]+\)/g, '')
6 .trim();
7 }
5 8
6 modifyRequestHeaders() { 9 modifyRequestHeaders() {
7 return [ 10 return [
8 { 11 {
9 headers: { 12 headers: {
10 'user-agent': window.navigator.userAgent.replace(/(Ferdium|Electron)\/\S+ \([^)]+\)/g, '').trim(), 13 'user-agent': window.navigator.userAgent
14 .replaceAll(/(Ferdium|Electron)\/\S+ \([^)]+\)/g, '')
15 .trim(),
16 },
17 requestFilters: {
18 urls: ['*://*/*'],
19 },
11 }, 20 },
12 requestFilters: { 21 ];
13 urls: ['*://*/*'], 22 }
14 }, 23 };
15 },
16 ];
17 }
18};
diff --git a/recipes/chatgpt/package.json b/recipes/chatgpt/package.json
index f5dbfbc..b6f87cc 100644
--- a/recipes/chatgpt/package.json
+++ b/recipes/chatgpt/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "chatgpt", 2 "id": "chatgpt",
3 "name": "ChatGPT", 3 "name": "ChatGPT",
4 "version": "1.0.1", 4 "version": "1.1.0",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://chat.openai.com/chat" 7 "serviceURL": "https://chat.openai.com/chat"
diff --git a/recipes/chatgpt/webview.js b/recipes/chatgpt/webview.js
index 2ebc1f3..a471ad3 100644
--- a/recipes/chatgpt/webview.js
+++ b/recipes/chatgpt/webview.js
@@ -1,5 +1,13 @@
1function _interopRequireDefault(obj) {
2 return obj && obj.__esModule ? obj : { default: obj };
3}
4
5const _path = _interopRequireDefault(require('path'));
6
1module.exports = Ferdium => { 7module.exports = Ferdium => {
2 Ferdium.handleDarkMode(isEnabled => { 8 Ferdium.handleDarkMode(isEnabled => {
3 localStorage.setItem('theme', isEnabled ? 'dark' : 'light' ); 9 localStorage.setItem('theme', isEnabled ? 'dark' : 'light');
4 }); 10 });
11
12 Ferdium.injectCSS(_path.default.join(__dirname, 'service.css'));
5}; 13};