Daydream Night Mode

Get rid of the sun-like screen and have a sweet Daydream...

Was ist Daydream Night Mode?

Daydream Night Mode ist eine Chrome-Erweiterung, die von zankyostudio entwickelt wurde, und ihr Hauptmerkmal ist "Get rid of the sun-like screen and have a sweet Daydream...".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Daydream Night Mode-Erweiterungs-CRX-Datei herunterladen

Laden Sie Daydream Night 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

                        Get rid of the sun-like screen and take your sweet dream.
Provide dark mode access to all websites with customizable contrast. You can also exclude any website from the extension if the website already provides dark mode.                    

Grundlegende Informationen zur Erweiterung

Name Daydream Night Mode Daydream Night Mode
ID kbbmooglpoifkklpckgabiahlicnhnmo
Offizielle URL https://chromewebstore.google.com/detail/daydream-night-mode/kbbmooglpoifkklpckgabiahlicnhnmo
Beschreibung Get rid of the sun-like screen and have a sweet Daydream...
Dateigröße 10.58 KB
Installationsanzahl 1,004
Aktuelle Version 0.1.6
Letztes Update 2020-11-20
Veröffentlichungsdatum 2019-06-01
Bewertung 4.18/5 Insgesamt 11 Bewertungen
Entwickler zankyostudio
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Daydream Night Mode",
    "version": "0.1.6",
    "description": "Get rid of the sun-like screen and have a sweet Daydream...",
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "ftp:\/\/*\/*",
        "file:\/\/*\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "DaydreamIcon.png"
    }
}