Inspect and view changes in Adblocker for YouTube™ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"version": "1.1",
"name": "Adblocker for YouTube™ ",
"description": "Install Adblocker for YouTube™ chrome extension & completely block all the annoying ads. Best YT ad remover.",
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "./icons/Icon_16.png",
"32": "./icons/Icon_32.png",
"48": "./icons/Icon_48.png",
"64": "./icons/Icon_64.png",
"128": "./icons/Icon_128.png",
"2000": "./icons/Icon_2000.png"
},
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"permissions": [
"storage",
"notifications",
"declarativeNetRequest"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "my_rules",
"enabled": true,
"path": "rules.json"
}
]
},
"web_accessible_resources": [
{
"resources": [
"script.js"
],
"matches": [
"<all_urls>"
]
}
]
}