Daydream Night Mode

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

O que é Daydream Night Mode?

Daydream Night Mode é uma extensão do Chrome desenvolvida por zankyostudio, e sua principal característica é "Get rid of the sun-like screen and have a sweet Daydream...".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Daydream Night Mode

Baixe arquivos de extensão Daydream Night Mode no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Daydream Night Mode Daydream Night Mode
ID kbbmooglpoifkklpckgabiahlicnhnmo
URL Oficial https://chromewebstore.google.com/detail/daydream-night-mode/kbbmooglpoifkklpckgabiahlicnhnmo
Descrição Get rid of the sun-like screen and have a sweet Daydream...
Tamanho do Arquivo 10.58 KB
Contagem de Instalações 1,004
Versão Atual 0.1.6
Última Atualização 2020-11-20
Data de Publicação 2019-06-01
Classificação 4.18/5 Total de 11 Avaliações
Desenvolvedor zankyostudio
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}