BlaCKout

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

BlaCKout là gì?

BlaCKout là một tiện ích mở rộng Chrome được phát triển bởi https://activebridge.org, và tính năng chính của nó là "Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng BlaCKout

Tải xuống các tệp mở rộng BlaCKout dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BlaCKout BlaCKout
ID epmieacohbnladjdcjinfajhepbfaakl
URL Chính Thức https://chromewebstore.google.com/detail/blackout/epmieacohbnladjdcjinfajhepbfaakl
Mô tả Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.
Kích Thước Tệp 17.33 KB
Số Lần Cài Đặt 664
Phiên Bản Hiện Tại 1.8
Cập Nhật Lần Cuối 2024-02-19
Ngày Phát Hành 2022-12-23
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://activebridge.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/galulex/deepdark
URL Trang Trợ Giúp https://github.com/galulex/deepdark/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}