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 |
官方網址 | 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" ] } |