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 Page Summarizer", "version": "1.7", "description": "Summarizes web pages using AI", "permissions": [ "activeTab", "identity", "storage" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "action": { "default_popup": "index.html" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ] } ], "oauth2": { "client_id": "232848374975-o5kisn8dnl6em73ggek9dacjhfs0lcm3.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/userinfo.email", "https:\/\/www.googleapis.com\/auth\/userinfo.profile" ] }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }