BlaCKout

Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.

O que é BlaCKout?

BlaCKout é uma extensão do Chrome desenvolvida por https://activebridge.org, e sua principal característica é "Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão BlaCKout

Baixe arquivos de extensão BlaCKout 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

                        Extension does not invent a wheel
It just utilize chrome force dark mode flag and
adds ability to whitelist websites by just clicking on extension or using keyboard shortcut.

Advantages:

- Open Source
- Lightweight (5Kb)
- Utilizes browser builtin dark mode

Additional feature is tabless mode. It forces new tabs to be opened in new window

https://github.com/galulex/deepdark                    

Informações Básicas da Extensão

Nome BlaCKout BlaCKout
ID epmieacohbnladjdcjinfajhepbfaakl
URL Oficial https://chromewebstore.google.com/detail/blackout/epmieacohbnladjdcjinfajhepbfaakl
Descrição Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.
Tamanho do Arquivo 17.33 KB
Contagem de Instalações 664
Versão Atual 1.8
Última Atualização 2024-02-19
Data de Publicação 2022-12-23
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor https://activebridge.org
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/galulex/deepdark
URL da Página de Ajuda https://github.com/galulex/deepdark/issues
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BlaCKout",
    "description": "Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.",
    "version": "1.8",
    "icons": {
        "128": "128.png"
    },
    "action": {
        "default_title": "Toggle Dark Mode"
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "dark.css"
            ],
            "js": [
                "page.js"
            ],
            "match_about_blank": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "commands": {
        "toggle": {
            "suggested_key": "Ctrl+Shift+D",
            "mac": "Command+Shift+D",
            "description": "Toggle Dark Mode"
        }
    }
}