Closed imranaalam closed 5 months ago
{ "manifest_version": 3, "name": "ChatGPT Extension", "description": "A Chrome template to start using chatgpt.js like a boss!", "version": "2024.5.16", "author": "chatgpt.js", "icons": { "16": "icons/icon16.png", "32": "icons/icon32.png", "64": "icons/icon64.png", "128": "icons/icon128.png" }, "permissions": [ "storage", "tabs" ], "action": { "default_popup": "popup/index.html" }, "web_accessible_resources": [{ "matches": [""], "resources": ["lib/settings-utils.js", "lib/chatgpt.js"] }], "content_scripts": [{ "matches": ["https://chat.openai.com/", "https://chatgpt.com/" ], "js": ["content.js"] }], "background": { "service_worker": "background.js" } }
@imranaalam I updated the matches per your previous observation in KudoAI/chatgpt.js few mins ago
{ "manifest_version": 3, "name": "ChatGPT Extension", "description": "A Chrome template to start using chatgpt.js like a boss!", "version": "2024.5.16", "author": "chatgpt.js", "icons": { "16": "icons/icon16.png", "32": "icons/icon32.png", "64": "icons/icon64.png", "128": "icons/icon128.png" }, "permissions": [ "storage", "tabs" ], "action": { "default_popup": "popup/index.html" }, "web_accessible_resources": [{ "matches": [""],
"resources": ["lib/settings-utils.js", "lib/chatgpt.js"]
}],
"content_scripts": [{
"matches": ["https://chat.openai.com/", "https://chatgpt.com/" ],
"js": ["content.js"]
}],
"background": { "service_worker": "background.js" }
}