Tisy Dark Mode

Apply dark mode for any website

Cos'è Tisy Dark Mode?

Tisy Dark Mode è un'estensione di Chrome sviluppata da Lê Hữu Phúc, e la sua funzione principale è "Apply dark mode for any website".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Tisy Dark Mode

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

                        • Apply dark mode for any website (except pages protected by the browser of course).
• Super simple and easy to use with one click.
• Instantly apply for all other tabs having the same domain.
• Day and Night styles (Day style has more contrast).
• An option page that allows manually input and backup whitelisted domains.                    

Informazioni di Base sull'Estensione

Nome Tisy Dark Mode Tisy Dark Mode
ID cnnipakfnojcohgpgikgnndiiajiooja
URL Ufficiale https://chromewebstore.google.com/detail/tisy-dark-mode/cnnipakfnojcohgpgikgnndiiajiooja
Descrizione Apply dark mode for any website
Dimensione del File 478 KB
Conteggio Installazioni 49
Versione Corrente 1.2
Ultimo Aggiornamento 2022-10-18
Data di Pubblicazione 2022-09-15
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Lê Hữu Phúc
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tisy Dark Mode",
    "description": "Apply dark mode for any website",
    "version": "1.2",
    "manifest_version": 3,
    "icons": {
        "128": "assets\/icons\/bulb-128.png"
    },
    "action": {
        "default_title": "Turn dark mode on\/off",
        "default_icon": {
            "128": "assets\/icons\/bulb-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "assets\/pages\/options.html",
    "content_scripts": [
        {
            "all_frames": true,
            "match_about_blank": false,
            "css": [
                "assets\/styles\/tisy-dark-mode.css"
            ],
            "js": [
                "assets\/scripts\/tisy-dark-mode.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "scripting",
        "storage",
        "tabs",
        "activeTab"
    ]
}