Youtube Darkmode
Enable Youtube's new Material UI theme
O que é Youtube Darkmode?
Youtube Darkmode é uma extensão do Chrome desenvolvida por Jack Hanford, e sua principal característica é "Enable Youtube's new Material UI theme".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Youtube Darkmode
Baixe arquivos de extensão Youtube Darkmode no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | ajngaombckgmodafdnmipfmcfgppnnhp |
URL Oficial | https://chrome.google.com/webstore/detail/youtube-darkmode/ajngaombckgmodafdnmipfmcfgppnnhp |
Descrição | Enable Youtube's new Material UI theme |
Tamanho do Arquivo | 8.11 KB |
Contagem de Instalações | 570 |
Versão Atual | 0.0.1 |
Última Atualização | 2017-05-17 |
Data de Publicação | 2017-05-17 |
Classificação | 2.00/5 Total de 4 Avaliações |
Desenvolvedor | Jack Hanford |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } ] } |