Skip to content

Commit d36da2b

Browse files
committed
Aligned symbols ↞ [auto-sync from https://github.com/KudoAI/chatgpt.js-chrome-starter]
1 parent e06cef3 commit d36da2b

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.13",
6+
"version": "2025.9.13.1",
77
"homepage_url": "https://github.com/KudoAI/chatgpt.js-chrome-starter",
88
"icons": { "16": "icons/icon16.png", "32": "icons/icon32.png", "64": "icons/icon64.png", "128": "icons/icon128.png" },
99
"permissions": ["activeTab", "storage"],

starters/chrome/extension/service-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ chrome.runtime.onMessage.addListener(async ({ action }) => {
2929
if (action == 'showAbout') {
3030
const [activeTab] = await chrome.tabs.query({ active: true, currentWindow: true })
3131
const chatgptTab = new URL(activeTab.url).hostname == 'chatgpt.com' ? activeTab
32-
: await chrome.tabs.create({ url: chatgptURL })
32+
: await chrome.tabs.create({ url: chatgptURL })
3333
if (activeTab != chatgptTab) await new Promise(resolve => // after new tab loads
3434
chrome.tabs.onUpdated.addListener(function loadedListener(tabId, { status }) {
3535
if (tabId == chatgptTab.id && status == 'complete') {

0 commit comments

Comments
 (0)