Daydream Night Mode

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

¿Qué es Daydream Night Mode?

Daydream Night Mode es una extensión de Chrome desarrollada por zankyostudio, y su función principal es "Get rid of the sun-like screen and have a sweet Daydream...".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Daydream Night Mode

Descarga archivos de extensión Daydream Night Mode en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Daydream Night Mode Daydream Night Mode
ID kbbmooglpoifkklpckgabiahlicnhnmo
URL Oficial https://chromewebstore.google.com/detail/daydream-night-mode/kbbmooglpoifkklpckgabiahlicnhnmo
Descripción Get rid of the sun-like screen and have a sweet Daydream...
Tamaño del Archivo 10.58 KB
Cantidad de Instalaciones 1,004
Versión Actual 0.1.6
Última Actualización 2020-11-20
Fecha de Publicación 2019-06-01
Calificación 4.18/5 Total de 11 Calificaciones
Desarrollador zankyostudio
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}