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", "version": "0.9.15", "manifest_version": 3, "name": "AI Summarizer", "action": { "default_title": "AI Summarizer", "default_popup": "js\/fallback.html" }, "description": "Summarize any web page using AI.", "background": { "service_worker": "js\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "run_at": "document_end", "all_frames": false, "js": [ "js\/content.js" ] } ], "permissions": [ "tabs", "contextMenus", "storage", "sidePanel" ], "web_accessible_resources": [ { "resources": [ "images\/x-icon.png", "images\/refresh.png" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } }