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": "Screenshot GPT", "version": "1.0.3", "permissions": [ "activeTab", "tabs", "contextMenus", "storage", "sidePanel", "offscreen" ], "action": { "default_popup": "html\/popup.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "description": "Take a screenshot of any area on a website and ask AI questions about it. Powered by OpenAI GPT models.", "options_page": "html\/options.html", "background": { "service_worker": "scripts\/service_worker.js", "type": "module" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "css": [ "styles\/sgpt-style.css" ], "js": [ "scripts\/content_script.js" ] } ], "web_accessible_resources": [ { "resources": [ "html\/sidepanel.html", "scripts\/sidepanel.js", "styles\/tailwind.css", "styles\/sgpt-style.css" ], "matches": [ "<all_urls>" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'" }, "host_permissions": [ "https:\/\/api.openai.com\/*" ], "side_panel": { "default_path": "html\/sidepanel.html" } }