BlaCKout

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

什么是BlaCKout?

BlaCKout是由https://activebridge.org开发的Chrome扩展程序,该扩展的主要功能是“Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.”。

扩展截图

screenshot
screenshot
screenshot

下载BlaCKout扩展crx文件

下载BlaCKout扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 BlaCKout BlaCKout
ID epmieacohbnladjdcjinfajhepbfaakl
官方URL https://chromewebstore.google.com/detail/blackout/epmieacohbnladjdcjinfajhepbfaakl
简介 Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.
文件大小 17.33 KB
安装次数 664
当前版本 1.8
更新时间 2024-02-19
上架时间 2022-12-23
评分 5.00/5 共4次评分
开发者 https://activebridge.org
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/galulex/deepdark
帮助页面URL https://github.com/galulex/deepdark/issues
支持的语言 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"
        }
    }
}