Dark Mode Per Site

Enable dark mode for certain websites, while keeping light mode for others.

Cos'è Dark Mode Per Site?

Dark Mode Per Site è un'estensione di Chrome sviluppata da goodmoviesinfo, e la sua funzione principale è "Enable dark mode for certain websites, while keeping light mode for others.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Dark Mode Per Site

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

                        Dark Mode Per Site lets you set any website to dark mode by just one click.

Settings are per site. So you can set some websites to dark mode, and some other websites to light mode.                    

Informazioni di Base sull'Estensione

Nome Dark Mode Per Site Dark Mode Per Site
ID ibcakdkpkhodimbhgmegdobmnemabfaa
URL Ufficiale https://chromewebstore.google.com/detail/dark-mode-per-site/ibcakdkpkhodimbhgmegdobmnemabfaa
Descrizione Enable dark mode for certain websites, while keeping light mode for others.
Dimensione del File 280 KB
Conteggio Installazioni 130
Versione Corrente 1.1
Ultimo Aggiornamento 2024-03-02
Data di Pubblicazione 2024-02-17
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore goodmoviesinfo
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "name": "Dark Mode Per Site",
    "short_name": "Dark Mode Per Site",
    "description": "Enable dark mode for certain websites, while keeping light mode for others.",
    "version": "1.1",
    "action": {
        "default_icon": "assets\/128.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "css\/content.css"
            ],
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "js": [
                "content.js"
            ],
            "match_about_blank": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "common.js"
            ]
        }
    ],
    "icons": {
        "128": "assets\/128.png",
        "32": "assets\/32.png",
        "64": "assets\/64.png"
    },
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab",
        "webNavigation"
    ],
    "host_permissions": [
        ""
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "*"
            ]
        }
    ]
}