Exempt your favorite channels from adblocking.
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": 2,
"name": "YouTube Channel Whitelist for uBlock Origin",
"short_name": "uBO-YouTube",
"version": "0.14.13",
"author": "x0a",
"description": "Exempt your favorite channels from adblocking.",
"browser_action": {
"default_icon": "./img/icon_128.png",
"default_title": "YouTube Channel Whitelist",
"default_popup": "popup.html"
},
"default_locale": "en",
"icons": {
"128": "./img/icon_128.png"
},
"content_scripts": [
{
"matches": [
"*://www.youtube.com/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*://*.youtube.com/"
],
"optional_permissions": [
"*://*.content.googleapis.com/"
],
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "settings.html",
"open_in_tab": true
},
"web_accessible_resources": [
"img/icon_16.png",
"userscript.js",
"userscript.css"
]
}