Youtube Darkmode
Enable Youtube's new Material UI theme
Cos'è Youtube Darkmode?
Youtube Darkmode è un'estensione di Chrome sviluppata da Jack Hanford, e la sua funzione principale è "Enable Youtube's new Material UI theme".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube Darkmode
Scarica i file di estensione Youtube Darkmode 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
Enable Youtube's new Material Design mode, which also enables Youtube's Darkmode feature. This chrome extension puts users in the A/B test for the new Youtube UI Github: https://github.com/hanford/youtube-darkmode
Informazioni di Base sull'Estensione
Nome | |
ID | ajngaombckgmodafdnmipfmcfgppnnhp |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-darkmode/ajngaombckgmodafdnmipfmcfgppnnhp |
Descrizione | Enable Youtube's new Material UI theme |
Dimensione del File | 8.11 KB |
Conteggio Installazioni | 570 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2017-05-17 |
Data di Pubblicazione | 2017-05-17 |
Valutazione | 2.00/5 Totale 4 Valutazioni |
Sviluppatore | Jack Hanford |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Darkmode", "version": "0.0.1", "manifest_version": 2, "description": "Enable Youtube's new Material UI theme", "icons": { "16": "icon.png", "32": "icon.png", "128": "icon.png" }, "permissions": [ "storage", "*:\/\/youtube.com\/*" ], "browser_action": { "default_icon": "icon.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "cookie-setter.js" ], "run_at": "document_start", "all_frames": true } ] } |