Daydream Night Mode

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

Cos'è Daydream Night Mode?

Daydream Night Mode è un'estensione di Chrome sviluppata da zankyostudio, e la sua funzione principale è "Get rid of the sun-like screen and have a sweet Daydream...".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Daydream Night Mode

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

                        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.                    

Informazioni di Base sull'Estensione

Nome Daydream Night Mode Daydream Night Mode
ID kbbmooglpoifkklpckgabiahlicnhnmo
URL Ufficiale https://chromewebstore.google.com/detail/daydream-night-mode/kbbmooglpoifkklpckgabiahlicnhnmo
Descrizione Get rid of the sun-like screen and have a sweet Daydream...
Dimensione del File 10.58 KB
Conteggio Installazioni 1,004
Versione Corrente 0.1.6
Ultimo Aggiornamento 2020-11-20
Data di Pubblicazione 2019-06-01
Valutazione 4.18/5 Totale 11 Valutazioni
Sviluppatore zankyostudio
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}