Skip to content

Commit

Permalink
Uppercased key words in section comments for readability ↞ [auto-sync…
Browse files Browse the repository at this point in the history
  • Loading branch information
kudo-sync-bot committed Dec 21, 2024
1 parent a150eb0 commit 0e57708
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions starters/chrome/extension/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ const app = {
}
chrome.storage.sync.set({ app }) // save to Chrome storage

// Launch ChatGPT on install
// Launch CHATGPT on install
chrome.runtime.onInstalled.addListener(details => {
if (details.reason == 'install')
chrome.tabs.create({ url: 'https://chatgpt.com/' })
})

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

Expand Down

0 comments on commit 0e57708

Please sign in to comment.