Youtube Darkmode

Enable Youtube's new Material UI theme

What is Youtube Darkmode?

Youtube Darkmode is a Chrome extension developed by Jack Hanford, and its main feature is "Enable Youtube's new Material UI theme".

Extension Screenshots

screenshot

Download Youtube Darkmode Extension CRX File

Download Youtube Darkmode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Youtube Darkmode Youtube Darkmode
ID ajngaombckgmodafdnmipfmcfgppnnhp
Official URL https://chrome.google.com/webstore/detail/youtube-darkmode/ajngaombckgmodafdnmipfmcfgppnnhp
Description Enable Youtube's new Material UI theme
File Size 8.11 KB
Installation Count 570
Current Version 0.0.1
Last Updated 2017-05-17
Publish Date 2017-05-17
Rating 2.00/5 Total 4 Ratings
Developer Jack Hanford
Email [email protected]
Payment Type free
Supported Languages 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
        }
    ]
}