We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent caf9f7d commit 63331a0Copy full SHA for 63331a0
starters/chrome/extension/background.js
@@ -3,7 +3,7 @@ const allowedHosts = ['chatgpt.com', 'chat.openai.com'];
3
// Add install/update actions
4
chrome.runtime.onInstalled.addListener((details) => {
5
chrome.storage.local.set({ 'chatgptJS_extensionDisabled': false }); // auto-enable
6
- if (details.reason == 'install') chrome.tabs.create({ url: 'https://chat.openai.com/' }); // open ChatGPT
+ if (details.reason == 'install') chrome.tabs.create({ url: 'https://chatgpt.com/' }); // open ChatGPT
7
});
8
9
// Sync extension state/settings when ChatGPT tab active
0 commit comments