Channel Blocker
Block irrelevant channels from the home page of youtube.
Hvad er Channel Blocker?
Channel Blocker er en Chrome-udvidelse udviklet af xanderjakeq, og dens hovedfunktion er "Block irrelevant channels from the home page of youtube.".
Udvidelsesskærmbilleder
Download Channel Blocker-udvidelses-CRX-fil
Download Channel Blocker-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
Stay productive while on Youtube by blocking distracting or irrelevant content from specific channels out of your homepage. You can't click on them if can't see them.
Grundlæggende oplysninger om udvidelsen
Navn | Channel Blocker |
ID | bdcfpamdaoifippnlppibiejaagbihon |
Officiel URL | https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon |
Beskrivelse | Block irrelevant channels from the home page of youtube. |
Filstørrelse | 10.86 KB |
Antal Installationer | 1,636 |
Nuværende Version | 1.1.1 |
Senest Opdateret | 2022-06-21 |
Udgivelsesdato | 2019-09-04 |
Bedømmelse | 1.80/5 Samlet 5 Bedømmelser |
Udvikler | xanderjakeq |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/thelostcreatives/youtube_channel_blocker |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Channel Blocker", "author": "1o1.wtf [https:\/\/github.com\/thelostcreatives]", "description": "Block irrelevant channels from the home page of youtube.", "version": "1.1.1", "action": { "default_popup": "popup.html", "default_icon": { "48": "\/icon.png" } }, "permissions": [ "notifications", "storage", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" } } |