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 |
电子邮箱 | [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" ] } |