Youtube Darkmode
Enable Youtube's new Material UI theme
Wat is Youtube Darkmode?
Youtube Darkmode is een Chrome-extensie ontwikkeld door Jack Hanford, en de belangrijkste functie is "Enable Youtube's new Material UI theme".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube Darkmode
Download Youtube Darkmode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | ajngaombckgmodafdnmipfmcfgppnnhp |
Officiële URL | https://chrome.google.com/webstore/detail/youtube-darkmode/ajngaombckgmodafdnmipfmcfgppnnhp |
Beschrijving | Enable Youtube's new Material UI theme |
Bestandsgrootte | 8.11 KB |
Aantal Installaties | 570 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2017-05-17 |
Publicatiedatum | 2017-05-17 |
Beoordeling | 2.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Jack Hanford |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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 } ] } |