Night Owl - Smart Dark Mode

Instantly transform websites into a comfortable, eye-friendly dark mode experience.

Cos'è Night Owl - Smart Dark Mode?

Night Owl - Smart Dark Mode è un'estensione di Chrome sviluppata da Music For Trees, e la sua funzione principale è "Instantly transform websites into a comfortable, eye-friendly dark mode experience.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Night Owl - Smart Dark Mode

Scarica i file di estensione Night Owl - Smart 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

                        Dark mode for any website!

Many websites don't have a dark mode option, so we made Night Owl. Click the owl icon to turn on dark mode for any site, and the extension will remember your preferences. Enjoy a comfortable browsing experience with your favorite sites in dark mode!                    

Informazioni di Base sull'Estensione

Nome Night Owl - Smart Dark Mode Night Owl - Smart Dark Mode
ID ifflcmkgdhiopibdbljombcjfeeldhnp
URL Ufficiale https://chromewebstore.google.com/detail/night-owl-smart-dark-mode/ifflcmkgdhiopibdbljombcjfeeldhnp
Descrizione Instantly transform websites into a comfortable, eye-friendly dark mode experience.
Dimensione del File 6.55 KB
Conteggio Installazioni 55
Versione Corrente 1.0
Ultimo Aggiornamento 2023-04-13
Data di Pubblicazione 2023-04-13
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Music For Trees
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://policies.google.com/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Night Owl - Smart Dark Mode",
    "version": "1.0",
    "description": "Instantly transform websites into a comfortable, eye-friendly dark mode experience.",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}