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 article Highlighter", "version": "1.1", "description": "Highlights sentences on the page based on AI's analysis", "permissions": [ "activeTab", "scripting", "storage" ], "host_permissions": [ "https:\/\/firestore.googleapis.com\/*" ], "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_end" } ], "action": { "default_icon": "icon.png" }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "content.js" ], "matches": [ "<all_urls>" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } }