Automatic Dark Theme For Youtube™

Automatically switch Youtube to its built-in dark theme.

What is Automatic Dark Theme For Youtube™?

Automatic Dark Theme For Youtube™ is a Chrome extension developed by vvision, and its main feature is "Automatically switch Youtube to its built-in dark theme.".

Extension Screenshots

screenshot

Download Automatic Dark Theme For Youtube™ Extension CRX File

Download Automatic Dark Theme For Youtube™ 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

                        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.                    

Extension Basic Information

Name Automatic Dark Theme For Youtube™ Automatic Dark Theme For Youtube™
ID mmhgglciecmmcekdmjnlmdobnephpbdf
Official URL https://chromewebstore.google.com/detail/automatic-dark-theme-for/mmhgglciecmmcekdmjnlmdobnephpbdf
Description Automatically switch Youtube to its built-in dark theme.
File Size 32.76 KB
Installation Count 419
Current Version 3.1.0
Last Updated 2020-12-07
Publish Date 2020-04-28
Rating 5.00/5 Total 5 Ratings
Developer vvision
Email [email protected]
Payment Type free
Extension Website https://github.com/vvision/yt-auto-dark
Supported Languages 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"
        }
    }
}