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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}