Dark Mode Sync

Sync dark mode with websites

Cos'è Dark Mode Sync?

Dark Mode Sync è un'estensione di Chrome sviluppata da Eric Chen, e la sua funzione principale è "Sync dark mode with websites".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Dark Mode Sync

Scarica i file di estensione Dark Mode Sync 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

                        Make websites that support dark mode match your system's dark mode.

Supported websites:
* Youtube
* Reddit
* Stack Overflow
* Twitter
* Twitch                    

Informazioni di Base sull'Estensione

Nome Dark Mode Sync Dark Mode Sync
ID hpioldggkhofifecekhgeoepibppmedn
URL Ufficiale https://chrome.google.com/webstore/detail/hpioldggkhofifecekhgeoepibppmedn
Descrizione Sync dark mode with websites
Dimensione del File 19.13 KB
Conteggio Installazioni 11
Versione Corrente 0.4
Ultimo Aggiornamento 2020-10-01
Data di Pubblicazione 2020-05-06
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Eric Chen
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://docs.google.com/document/d/1jgmA2stM6D2Z13xgw_KcJH8si77YOcmG0lK4Jx-BvrI/edit
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dark Mode Sync",
    "version": "0.4",
    "description": "Sync dark mode with websites",
    "browser_action": {
        "default_icon": {
            "32": "logo32.png",
            "128": "logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "youtube.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "reddit.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.stackoverflow.com\/*"
            ],
            "js": [
                "stackoverflow.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "twitter.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "twitch.js"
            ]
        }
    ],
    "manifest_version": 2
}