Automatic Dark Theme For Youtube™

Automatically switch Youtube to its built-in dark theme.

Cos'è Automatic Dark Theme For Youtube™?

Automatic Dark Theme For Youtube™ è un'estensione di Chrome sviluppata da vvision, e la sua funzione principale è "Automatically switch Youtube to its built-in dark theme.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Automatic Dark Theme For Youtube™

Scarica i file di estensione Automatic Dark Theme For Youtube™ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Automatic Dark Theme For Youtube™ Automatic Dark Theme For Youtube™
ID mmhgglciecmmcekdmjnlmdobnephpbdf
URL Ufficiale https://chromewebstore.google.com/detail/automatic-dark-theme-for/mmhgglciecmmcekdmjnlmdobnephpbdf
Descrizione Automatically switch Youtube to its built-in dark theme.
Dimensione del File 32.76 KB
Conteggio Installazioni 419
Versione Corrente 3.1.0
Ultimo Aggiornamento 2020-12-07
Data di Pubblicazione 2020-04-28
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore vvision
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/vvision/yt-auto-dark
Lingue Supportate 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"
        }
    }
}