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": "__MSG_appName__", "description": "__MSG_appDesc__", "version": "1.0.0", "default_locale": "en", "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "permissions": [ "storage", "browsingData" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "action": [], "icons": { "16": "icon.png", "48": "icon.png", "64": "icon.png", "96": "icon.png", "128": "icon.png" }, "commands": { "_execute_action": { "description": "__MSG_appName__", "suggested_key": "Alt+C" } }, "web_accessible_resources": [ { "resources": [ "icon.png" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content\/content.js" ], "css": [ "content\/content.css" ], "run_at": "document_end", "all_frames": true } ] }