YouTube Channel Whitelist for uBlock Origin

Exempt your favorite channels from adblocking.

What is YouTube Channel Whitelist for uBlock Origin?

YouTube Channel Whitelist for uBlock Origin is a Chrome extension developed by x0a, and its main feature is "Exempt your favorite channels from adblocking.".

Extension Screenshots

screenshot
screenshot
screenshot

Download YouTube Channel Whitelist for uBlock Origin Extension CRX File

Download YouTube Channel Whitelist for uBlock Origin extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension allows you to whitelist specific channels from uBlock Origin, while also allowing you to blacklist, mute specific advertisers and skip unskippable ads!

To get started, add the following line to uBlock Origin's "Trusted Sites" tab:

*youtube.com/*&disableadblock=1




Firefox version: https://addons.mozilla.org/en-US/firefox/addon/youtube-channel-whitelist/
Source / Issues: https://github.com/x0a/uBO-YouTube                    

Extension Basic Information

Name YouTube Channel Whitelist for uBlock Origin YouTube Channel Whitelist for uBlock Origin
ID pbgojokkgbikdofpgphemhldcbaejfog
Official URL https://chromewebstore.google.com/detail/youtube-channel-whitelist/pbgojokkgbikdofpgphemhldcbaejfog
Description Exempt your favorite channels from adblocking.
File Size 273 KB
Installation Count 9,522
Current Version 0.14.13
Last Updated 2023-05-21
Publish Date 2020-06-20
Rating 4.50/5 Total 106 Ratings
Developer x0a
Email [email protected]
Payment Type free
Help Page URL https://github.com/x0a/uBO-YouTube
Supported Languages de,en,fr,no,vi,tr,es,it,pl,fi,cs,sr,ar,ja,ko
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"
    ]
}