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": "Mage", "version": "0.2", "description": "Your own magical AI sidekick for the web", "options_ui": { "page": "src\/pages\/options\/index.html" }, "background": { "service_worker": "src\/pages\/background\/index.js", "type": "module" }, "action": { "default_icon": "icon-34.png" }, "devtools_page": "src\/pages\/devtools\/index.html", "side_panel": { "default_path": "src\/pages\/panel\/index.html" }, "icons": { "128": "icon-128.png" }, "permissions": [ "sidePanel", "scripting", "activeTab", "storage" ], "host_permissions": [ "<all_urls>" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "<all_urls>" ], "js": [ "src\/pages\/content\/index.js" ], "css": [ "contentStyle.css" ] } ], "web_accessible_resources": [ { "resources": [ "contentStyle.css", "icon-128.png", "icon-34.png" ], "matches": [] } ] }