Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Explain++", "version": "1.0", "description": "Explains selected text or images using GPT-4o.", "permissions": [ "contextMenus", "storage", "activeTab", "scripting" ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ] } ], "host_permissions": [ "https:\/\/api.openai.com\/*", "https:\/\/my-api-proxy-dkdqx31c2-turbochats-projects.vercel.app\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "128": "explain.png" } }, "icons": { "128": "explain.png" } }