Night Owl - Smart Dark Mode

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

Was ist Night Owl - Smart Dark Mode?

Night Owl - Smart Dark Mode ist eine Chrome-Erweiterung, die von Music For Trees entwickelt wurde, und ihr Hauptmerkmal ist "Instantly transform websites into a comfortable, eye-friendly dark mode experience.".

Erweiterungsscreenshots

screenshot

Night Owl - Smart Dark Mode-Erweiterungs-CRX-Datei herunterladen

Laden Sie Night Owl - Smart Dark Mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Night Owl - Smart Dark Mode Night Owl - Smart Dark Mode
ID ifflcmkgdhiopibdbljombcjfeeldhnp
Offizielle URL https://chromewebstore.google.com/detail/night-owl-smart-dark-mode/ifflcmkgdhiopibdbljombcjfeeldhnp
Beschreibung Instantly transform websites into a comfortable, eye-friendly dark mode experience.
Dateigröße 6.55 KB
Installationsanzahl 55
Aktuelle Version 1.0
Letztes Update 2023-04-13
Veröffentlichungsdatum 2023-04-13
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Music For Trees
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://policies.google.com/privacy
Unterstützte Sprachen 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"
    }
}