Adblock For YouTube™, Youtube Adblocker, No Ads on YouTube™
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"action": {
"default_icon": {
"16": "icons/i16.png",
"19": "icons/i19.png",
"32": "icons/i32.png",
"38": "icons/i38.png",
"128": "icons/i128.png"
},
"default_popup": "popup.html",
"default_title": "Options"
},
"default_locale": "en_US",
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content.js"
],
"matches": [
"*://*.youtube.com/*"
],
"run_at": "document_start"
},
{
"css": [
"style.css"
],
"all_frames": true,
"js": [
"looper.js"
],
"matches": [
"*://*.youtube.com/*"
],
"run_at": "document_end"
}
],
"declarative_net_request": {
"rule_resources": [
{
"enabled": true,
"id": "youtube",
"path": "rules/youtube.json"
}
]
},
"description": "__MSG_appDesc__",
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "icons/i16.png",
"19": "icons/i19.png",
"32": "icons/i32.png",
"38": "icons/i38.png",
"128": "icons/i128.png"
},
"manifest_version": 3,
"name": "__MSG_appName__",
"permissions": [
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"declarativeNetRequestFeedback",
"storage",
"scripting",
"tabs",
"contextMenus"
],
"short_name": "Youtube",
"version": "0.0.2",
"web_accessible_resources": [
{
"matches": [
"*://*.youtube.com/*"
],
"resources": [
"scriptlets.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}