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
Eメール [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"
        }
    }
}