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": "Ad Replacer", "version": "2.0.0", "description": "Replace ads with artwork, quotes, or blank space for a more clean and focused browsing experience.", "permissions": [ "storage", "activeTab", "tabs", "contextMenus" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "default_popup": "src\/popup.html", "default_icon": "icon_64.png" }, "options_ui": { "page": "src\/options.html", "open_in_tab": true }, "background": { "service_worker": "background\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content\/content.js" ], "run_at": "document_start" } ], "icons": { "16": "icon_16.png", "64": "icon_64.png", "128": "icon_128.png" } }