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": "AdBlocker for youtube", "version": "1.0.0", "description": "Block ads on youtube", "icons": { "16": "32.png", "48": "48.png", "128": "128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "tabs", "storage", "declarativeNetRequest" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "action": { "default_icon": "32.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content_script.js" ] } ] }