YouTube Blocker
Block unwanted YouTube channels.
Cos'è YouTube Blocker?
YouTube Blocker è un'estensione di Chrome sviluppata da Przemysław Tyczyński, e la sua funzione principale è "Block unwanted YouTube channels.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Blocker
Scarica i file di estensione YouTube 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
YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. We know that the YouTube feed can be troublesome sometimes, to say the least. For that reason, we put forward a much needed solution to aforementioned problem. Hide unwanted content now.
Informazioni di Base sull'Estensione
Nome | |
ID | okgepglpkhgfhjonfceifgibiobjnodg |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg |
Descrizione | Block unwanted YouTube channels. |
Dimensione del File | 96.3 KB |
Conteggio Installazioni | 1,036 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2020-04-21 |
Data di Pubblicazione | 2020-04-21 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | Przemysław Tyczyński |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://youtube-blocker.tyczynski.dev |
URL della Pagina di Aiuto | https://youtube-blocker.tyczynski.dev |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Blocker", "description": "Block unwanted YouTube channels.", "version": "1.0.0", "browser_action": { "default_title": "YouTube Blocker", "default_popup": "popup.html", "default_icon": { "16": ".\/icons\/icon-16.png", "48": ".\/icons\/icon-48.png", "128": ".\/icons\/icon-128.png" } }, "icons": { "16": ".\/icons\/icon-16.png", "48": ".\/icons\/icon-48.png", "128": ".\/icons\/icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "js\/content.js" ] } ], "options_ui": { "page": "options.html", "browser_style": true, "chrome_style": true }, "permissions": [ "storage" ] } |