Night Owl - Smart Dark Mode

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

Qu'est-ce que Night Owl - Smart Dark Mode ?

Night Owl - Smart Dark Mode est une extension Chrome développée par Music For Trees, et sa fonction principale est "Instantly transform websites into a comfortable, eye-friendly dark mode experience.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Night Owl - Smart Dark Mode

Téléchargez les fichiers d'extension Night Owl - Smart Dark Mode au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Night Owl - Smart Dark Mode Night Owl - Smart Dark Mode
ID ifflcmkgdhiopibdbljombcjfeeldhnp
URL Officiel https://chromewebstore.google.com/detail/night-owl-smart-dark-mode/ifflcmkgdhiopibdbljombcjfeeldhnp
Description Instantly transform websites into a comfortable, eye-friendly dark mode experience.
Taille du Fichier 6.55 KB
Nombre d'Installations 55
Version Actuelle 1.0
Dernière Mise à Jour 2023-04-13
Date de Publication 2023-04-13
Évaluation 5.00/5 Total 2 Évaluations
Développeur Music For Trees
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://policies.google.com/privacy
Langues Prises en Charge 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"
    }
}