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": "AI-Summarize", "version": "1.0", "description": "Summarize selected text or entire page with AI", "permissions": [ "activeTab", "contextMenus", "storage", "scripting" ], "commands": { "summarize-selection": { "suggested_key": { "default": "Ctrl+Shift+D", "mac": "Command+Shift+D" }, "description": "Summarize selected text" }, "summarize-page": { "suggested_key": { "default": "Ctrl+Shift+R", "mac": "Command+Shift+R" }, "description": "Summarize entire page" } }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "ExtPay.js", "content.js" ], "css": [ "content.css" ] } ], "web_accessible_resources": [ { "resources": [ "ExtPay.js" ], "matches": [ "<all_urls>" ] } ] }