Youtube Darkmode

Enable Youtube's new Material UI theme

什么是Youtube Darkmode?

Youtube Darkmode是由Jack Hanford开发的Chrome扩展程序,该扩展的主要功能是“Enable Youtube's new Material UI theme”。

扩展截图

screenshot

下载Youtube Darkmode扩展crx文件

下载Youtube Darkmode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Youtube Darkmode Youtube Darkmode
ID ajngaombckgmodafdnmipfmcfgppnnhp
官方URL https://chrome.google.com/webstore/detail/youtube-darkmode/ajngaombckgmodafdnmipfmcfgppnnhp
简介 Enable Youtube's new Material UI theme
文件大小 8.11 KB
安装次数 570
当前版本 0.0.1
更新时间 2017-05-17
上架时间 2017-05-17
评分 2.00/5 共4次评分
开发者 Jack Hanford
电子邮箱 [email protected]
付费类型 free
支持的语言 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
        }
    ]
}