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": "Web Page Summarizer", "version": "1.0", "description": "AI-powered webpage summaries using Gemini, Claude, ChatGPT, and Grok. Get instant, well-formatted summaries.", "permissions": [ "activeTab", "scripting", "storage" ], "action": { "default_popup": "popup.html", "default_title": "Summarize this page", "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }, "background": { "service_worker": "background.js" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "host_permissions": [ "https:\/\/generativelanguage.googleapis.com\/*", "https:\/\/api.anthropic.com\/*", "https:\/\/api.openai.com\/*", "https:\/\/api.x.ai\/*" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "Command+Shift+S" }, "description": "Summarize current page" } }, "web_accessible_resources": [ { "resources": [ "welcome.html", "welcome.js", "privacy.html" ], "matches": [ "<all_urls>" ] } ] }