YouTube Channel Whitelist for uBlock Origin
Exempt your favorite channels from adblocking.
YouTube Channel Whitelist for uBlock Originคืออะไร?
YouTube Channel Whitelist for uBlock Origin เป็นส่วนขยายของ Chrome ที่พัฒนาโดย x0a และคุณลักษณะหลักของมันคือ "Exempt your favorite channels from adblocking."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Channel Whitelist for uBlock Origin
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |