KudoAI / chatgpt.js-chrome-starter

🤖 A starting point for developing your own Chrome extension using chatgpt.js (including pop-up menu + settings management)
https://chatgpt.js.org
Other
46 stars 35 forks source link

change manifest #17

Closed imranaalam closed 5 months ago

imranaalam commented 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" } }

adamlui commented 5 months ago

@imranaalam I updated the matches per your previous observation in KudoAI/chatgpt.js few mins ago