BlaCKout

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

Qu'est-ce que BlaCKout ?

BlaCKout est une extension Chrome développée par https://activebridge.org, et sa fonction principale est "Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension BlaCKout

Téléchargez les fichiers d'extension BlaCKout au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom BlaCKout BlaCKout
ID epmieacohbnladjdcjinfajhepbfaakl
URL Officiel https://chromewebstore.google.com/detail/blackout/epmieacohbnladjdcjinfajhepbfaakl
Description Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.
Taille du Fichier 17.33 KB
Nombre d'Installations 664
Version Actuelle 1.8
Dernière Mise à Jour 2024-02-19
Date de Publication 2022-12-23
Évaluation 5.00/5 Total 4 Évaluations
Développeur https://activebridge.org
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/galulex/deepdark
URL de la Page d'Aide https://github.com/galulex/deepdark/issues
Langues Prises en Charge 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"
        }
    }
}