YouTube Zen Mode
Get rid of all the distractions on YouTube
Cos'è YouTube Zen Mode?
YouTube Zen Mode è un'estensione di Chrome sviluppata da Marbl, e la sua funzione principale è "Get rid of all the distractions on YouTube".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Zen Mode
Scarica i file di estensione YouTube Zen Mode 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
Zen mode extension removes distractions from YouTube. May it be a content such as a news feed, notifications or suggestions of similar videos to the one you are currently watching on youtube.
Informazioni di Base sull'Estensione
Nome | YouTube Zen Mode |
ID | dgdfifjibepijpnledojfgcaggckaclb |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-zen-mode/dgdfifjibepijpnledojfgcaggckaclb |
Descrizione | Get rid of all the distractions on YouTube |
Dimensione del File | 399 KB |
Conteggio Installazioni | 212 |
Versione Corrente | 2.1.2 |
Ultimo Aggiornamento | 2023-01-10 |
Data di Pubblicazione | 2020-11-14 |
Valutazione | 5.00/5 Totale 6 Valutazioni |
Sviluppatore | Marbl |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Zen Mode", "version": "2.1.2", "description": "Get rid of all the distractions on YouTube", "manifest_version": 3, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage", "tabs", "webNavigation", "webRequest" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "action": { "default_popup": "popup.html", "default_title": "Zen", "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "background": { "service_worker": "background.js" }, "browser_specific_settings": { "gecko": { "id": "{80b1557a-ec9a-4e6e-8877-8aa4f146c413}" } }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "youtube\/main.js" ], "css": [ "youtube\/youtube.css" ], "run_at": "document_end" } ] } |