Remove ads on YouTube and everywhere else you browse.
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",
"name": "__MSG_name_releasebuild__",
"short_name": "__MSG_name__",
"description": "__MSG_description__",
"default_locale": "en_US",
"manifest_version": 3,
"version": "1.0.5",
"background": {
"service_worker": "background/background.js"
},
"icons": {
"16": "icon16.png",
"48": "icon64.png",
"128": "icon128.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "__MSG_name__",
"default_icon": "icon128.png"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset1",
"enabled": true,
"path": "rules.json"
},
{
"id": "ruleset2",
"enabled": true,
"path": "rules2.json"
}
]
},
"host_permissions": [
"*://*/*"
],
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content/content.js"
],
"run_at": "document_start"
}
],
"permissions": [
"tabs",
"storage",
"declarativeNetRequest",
"notifications"
]
}