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
官方網址 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"
        }
    }
}