Skip to content

Commit 95f1fa5

Browse files
committed
Added /* global chatgpt */
1 parent f90b034 commit 95f1fa5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

starters/chrome/extension/content.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// NOTE: This script relies on the powerful chatgpt.js library @ https://chatgpt.js.org
22
// © 2023–2024 KudoAI & contributors under the MIT license
33

4-
(async () => {
4+
(async () => { /* global chatgpt */
55

66
// Import LIBS
77
const { config, settings } = await import(chrome.runtime.getURL('lib/settings.js'))

starters/greasemonkey/chatgpt.js-greasemonkey-starter.user.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// @description A Greasemonkey template to start using chatgpt.js like a boss
44
// @author chatgpt.js
55
// @namespace https://chatgpt.js.org
6-
// @version 2024.10.11
6+
// @version 2024.11.14
77
// @license MIT
88
// @match *://chatgpt.com/*
99
// @match *://chat.openai.com/*
@@ -19,7 +19,7 @@
1919

2020
// NOTE: This script relies on the powerful chatgpt.js library @ https://chatgpt.js.org © 2023–2024 KudoAI & contributors under the MIT license
2121

22-
(async () => {
22+
(async () => { /* global chatgpt */
2323

2424
// Init config
2525
const config = { prefix: 'chatgptScript' }; loadSetting('skipAlert');

0 commit comments

Comments
 (0)