Automatic Dark Theme For Youtube™

Automatically switch Youtube to its built-in dark theme.

Qu'est-ce que Automatic Dark Theme For Youtube™ ?

Automatic Dark Theme For Youtube™ est une extension Chrome développée par vvision, et sa fonction principale est "Automatically switch Youtube to its built-in dark theme.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Automatic Dark Theme For Youtube™

Téléchargez les fichiers d'extension Automatic Dark Theme For Youtube™ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Automatic Dark Theme For Youtube™ Automatic Dark Theme For Youtube™
ID mmhgglciecmmcekdmjnlmdobnephpbdf
URL Officiel https://chromewebstore.google.com/detail/automatic-dark-theme-for/mmhgglciecmmcekdmjnlmdobnephpbdf
Description Automatically switch Youtube to its built-in dark theme.
Taille du Fichier 32.76 KB
Nombre d'Installations 419
Version Actuelle 3.1.0
Dernière Mise à Jour 2020-12-07
Date de Publication 2020-04-28
Évaluation 5.00/5 Total 5 Évaluations
Développeur vvision
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/vvision/yt-auto-dark
Langues Prises en Charge 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"
        }
    }
}