{ "manifest_version": 3, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "3.3.1", "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" }, "permissions": [ "storage" ], "host_permissions": [ "*://*/*" ], "background": { "service_worker": "background/bg.js" }, "action": {}, "content_scripts": [ { "matches": [ "https://chat.openai.com/*" ], "js": [ "content-scripts/mainUI.js" ] } ], "options_ui": { "page": "options/options.html", "open_in_tab": true, "css": [ "options/options.css" ] }, "web_accessible_resources": [ { "resources": [ "content-scripts/mainUI.css", "icons/icon48.png", "leave_review.png" ], "matches": [ "https://chat.openai.com/*" ] } ], "commands": { "toggle-web-access": { "suggested_key": { "default": "Alt+W" }, "description": "__MSG_toggleWebAccess__" } } }