Automatic Dark Theme For Youtube™

Automatically switch Youtube to its built-in dark theme.

什么是Automatic Dark Theme For Youtube™?

Automatic Dark Theme For Youtube™是由vvision开发的Chrome扩展程序,该扩展的主要功能是“Automatically switch Youtube to its built-in dark theme.”。

扩展截图

screenshot

下载Automatic Dark Theme For Youtube™扩展crx文件

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

扩展使用说明

                        This extension tries to switch to the built-in dark theme during ten secondes after page load. In case of slow loading, it's possible that the switch would not occured. Therefore another try will during next page load or at current page refresh.                    

扩展基本信息

名称 Automatic Dark Theme For Youtube™ Automatic Dark Theme For Youtube™
ID mmhgglciecmmcekdmjnlmdobnephpbdf
官方URL https://chromewebstore.google.com/detail/automatic-dark-theme-for/mmhgglciecmmcekdmjnlmdobnephpbdf
简介 Automatically switch Youtube to its built-in dark theme.
文件大小 32.76 KB
安装次数 419
当前版本 3.1.0
更新时间 2020-12-07
上架时间 2020-04-28
评分 5.00/5 共5次评分
开发者 vvision
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/vvision/yt-auto-dark
支持的语言 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "short_name": "YtAutoDark",
    "version": "3.1.0",
    "author": "Victor Voisin",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/vvision\/yt-auto-dark",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "96": "icons\/icon_96.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "modules\/external\/browser-polyfill.min.js",
            "core\/logger.js",
            "core\/onInstalled.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "modules\/external\/browser-polyfill.min.js",
                "core\/logger.js",
                "ytAutoDark.js"
            ]
        }
    ],
    "options_ui": {
        "page": "pages\/options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "60.0"
        }
    }
}