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": "SummerIce \u2600\ufe0f\ud83e\uddca - Page Summarizer", "version": "2.0.0", "description": "Summarize articles quickly with multiple AI providers (OpenAI, Anthropic, Gemini, Grok).", "permissions": [ "activeTab", "storage", "offscreen" ], "host_permissions": [ "https:\/\/api.openai.com\/*", "https:\/\/api.anthropic.com\/*", "https:\/\/generativelanguage.googleapis.com\/*", "https:\/\/api.x.ai\/*" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "default_title": "SummerIce \u2600\ufe0f\ud83e\uddca - Page Summarizer" }, "options_page": "settings.html", "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Summarize the current page" } }, "web_accessible_resources": [ { "resources": [ "node_modules\/@mozilla\/readability\/Readability.js", "node_modules\/dompurify\/dist\/purify.min.js" ], "matches": [ "<all_urls>" ] } ] }