{ "name": "ChatGPTBox", "description": "Integrating ChatGPT into your browser deeply, everything you need is here", "version": "2.0.3", "manifest_version": 2, "icons": { "16": "logo.png", "32": "logo.png", "48": "logo.png", "128": "logo.png" }, "permissions": [ "storage", "contextMenus", "https://*.openai.com/" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https://*/*" ], "js": [ "shared.js", "content-script.js" ], "css": [ "content-script.css" ] } ], "web_accessible_resources": [ "*.png" ] }