Channel Blocker
Block irrelevant channels from the home page of youtube.
Cos'è Channel Blocker?
Channel Blocker è un'estensione di Chrome sviluppata da xanderjakeq, e la sua funzione principale è "Block irrelevant channels from the home page of youtube.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Channel Blocker
Scarica i file di estensione Channel Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Channel Blocker |
ID | bdcfpamdaoifippnlppibiejaagbihon |
URL Ufficiale | https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon |
Descrizione | Block irrelevant channels from the home page of youtube. |
Dimensione del File | 10.86 KB |
Conteggio Installazioni | 1,636 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2022-06-21 |
Data di Pubblicazione | 2019-09-04 |
Valutazione | 1.80/5 Totale 5 Valutazioni |
Sviluppatore | xanderjakeq |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/thelostcreatives/youtube_channel_blocker |
Lingue Supportate | 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" } } |