Skip to content

Commit 0e57708

Browse files
committed
Uppercased key words in section comments for readability ↞ [auto-sync from https://github.com/KudoAI/chatgpt.js-chrome-starter]
1 parent a150eb0 commit 0e57708

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

starters/chrome/extension/service-worker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ const app = {
1111
}
1212
chrome.storage.sync.set({ app }) // save to Chrome storage
1313

14-
// Launch ChatGPT on install
14+
// Launch CHATGPT on install
1515
chrome.runtime.onInstalled.addListener(details => {
1616
if (details.reason == 'install')
1717
chrome.tabs.create({ url: 'https://chatgpt.com/' })
1818
})
1919

20-
// Sync settings to activated tabs
20+
// Sync SETTINGS to activated tabs
2121
chrome.tabs.onActivated.addListener(activeInfo =>
2222
chrome.tabs.sendMessage(activeInfo.tabId, { action: 'syncConfigToUI' }))
2323

0 commit comments

Comments
 (0)