YouTube Channel Whitelist for uBlock Origin

Exempt your favorite channels from adblocking.

YouTube Channel Whitelist for uBlock Origin란 무엇입니까?

YouTube Channel Whitelist for uBlock Origin은(는) x0a에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Exempt your favorite channels from adblocking."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

YouTube Channel Whitelist for uBlock Origin 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 YouTube Channel Whitelist for uBlock Origin YouTube Channel Whitelist for uBlock Origin
ID pbgojokkgbikdofpgphemhldcbaejfog
공식 URL https://chromewebstore.google.com/detail/youtube-channel-whitelist/pbgojokkgbikdofpgphemhldcbaejfog
설명 Exempt your favorite channels from adblocking.
파일 크기 273 KB
설치 횟수 9,522
현재 버전 0.14.13
최근 업데이트 2023-05-21
출시 날짜 2020-06-20
평점 4.50/5 총 106 개의 평점
개발자 x0a
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/x0a/uBO-YouTube
지원되는 언어 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"
    ]
}