Skip to content

Commit c62644b

Browse files
committed
Increased delay +1s in showAbout action ↞ [auto-sync from https://github.com/KudoAI/chatgpt.js-chrome-starter]
1 parent f16ec5a commit c62644b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

starters/chrome/extension/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "ChatGPT Extension",
44
"short_name": "ChatGPT 🧩",
55
"description": "A Chromium extension template to start using chatgpt.js like a boss!",
6-
"version": "2025.9.3",
6+
"version": "2025.9.3.1",
77
"author": "KudoAI",
88
"homepage_url": "https://github.com/KudoAI/chatgpt.js-chrome-starter",
99
"icons": { "16": "icons/icon16.png", "32": "icons/icon32.png", "64": "icons/icon64.png", "128": "icons/icon128.png" },

starters/chrome/extension/service-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ chrome.runtime.onMessage.addListener(async ({ action }) => {
3333
if (activeTab != chatgptTab) await new Promise(resolve => // after new tab loads
3434
chrome.tabs.onUpdated.addListener(function loadedListener(tabId, changeInfo) {
3535
if (tabId == chatgptTab.id && changeInfo.status == 'complete') {
36-
chrome.tabs.onUpdated.removeListener(loadedListener) ; setTimeout(resolve, 500)
36+
chrome.tabs.onUpdated.removeListener(loadedListener) ; setTimeout(resolve, 1500)
3737
}}))
3838
chrome.tabs.sendMessage(chatgptTab.id, { action: 'showAbout' })
3939
}

0 commit comments

Comments
 (0)