YouTube Channel Whitelist for uBlock Origin
Exempt your favorite channels from adblocking.
Hvad er YouTube Channel Whitelist for uBlock Origin?
YouTube Channel Whitelist for uBlock Origin er en Chrome-udvidelse udviklet af x0a, og dens hovedfunktion er "Exempt your favorite channels from adblocking.".
Udvidelsesskærmbilleder
Download YouTube Channel Whitelist for uBlock Origin-udvidelses-CRX-fil
Download YouTube Channel Whitelist for uBlock Origin-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | YouTube Channel Whitelist for uBlock Origin |
ID | pbgojokkgbikdofpgphemhldcbaejfog |
Officiel URL | https://chromewebstore.google.com/detail/youtube-channel-whitelist/pbgojokkgbikdofpgphemhldcbaejfog |
Beskrivelse | Exempt your favorite channels from adblocking. |
Filstørrelse | 273 KB |
Antal Installationer | 9,522 |
Nuværende Version | 0.14.13 |
Senest Opdateret | 2023-05-21 |
Udgivelsesdato | 2020-06-20 |
Bedømmelse | 4.50/5 Samlet 106 Bedømmelser |
Udvikler | x0a |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/x0a/uBO-YouTube |
Understøttede Sprog | 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" ] } |