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.」です。
拡張機能のスクリーンショット
YouTube Channel Whitelist for uBlock Origin拡張機能のCRXファイルをダウンロード
YouTube Channel Whitelist for uBlock Origin拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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 |
Eメール | [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" ] } |