Dark Background and Light Text

Makes every page to have light text on dark background (exact colors are customizable)

Dark Background and Light Text란 무엇입니까?

Dark Background and Light Text은(는) baumhoto에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes every page to have light text on dark background (exact colors are customizable)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Dark Background and Light Text 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Dark Background and Light Text enables dark mode on every webpage. The exact colors are configurable and it can be disabled per domain  e.g. on pages which have their own dark mode e.g. Youtube or Reddit.                    

확장 프로그램 기본 정보

이름 Dark Background and Light Text Dark Background and Light Text
ID cdcoopnlkdlmphjpjggdmhohkiklonkh
공식 URL https://chrome.google.com/webstore/detail/dark-background-and-light/cdcoopnlkdlmphjpjggdmhohkiklonkh
설명 Makes every page to have light text on dark background (exact colors are customizable)
파일 크기 85.73 KB
설치 횟수 6,000
현재 버전 0.6.10
최근 업데이트 2019-01-12
출시 날짜 2019-01-08
평점 4.78/5 총 37 개의 평점
개발자 baumhoto
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/baumhoto/dark-background-light-text-extension/tree/chrome
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dark Background and Light Text",
    "version": "0.6.10",
    "description": "Makes every page to have light text on dark background (exact colors are customizable)",
    "icons": {
        "48": "icons\/icon48.png"
    },
    "applications": {
        "gecko": {
            "id": "jid1-QoFqdK4qzUfGWQ@jetpack"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/webextension-polyfill\/dist\/browser-polyfill.min.js",
                "lib\/shared.js",
                "lib\/css-color-parser\/csscolorparser.js",
                "lib\/get_acceptable_range.js",
                "lib\/color_utils.js",
                "methods\/stylesheet-processor-abstract.js",
                "methods\/stylesheet-color-processor.js",
                "lib\/content-script.js"
            ],
            "run_at": "document_start",
            "match_about_blank": false,
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "lib\/webextension-polyfill\/dist\/browser-polyfill.min.js",
            "lib\/shared.js",
            "lib\/css-color-parser\/csscolorparser.js",
            "lib\/color_utils.js",
            "lib\/background-script.js"
        ]
    },
    "commands": {
        "global_toggle_hotkey": {
            "suggested_key": "Ctrl+Shift+Y",
            "description": "Toggle enabled globally"
        },
        "tab_toggle_hotkey": {
            "suggested_key": "Ctrl+Y",
            "description": "Toggle enabled for current tab"
        }
    },
    "browser_action": {
        "browser_style": false,
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png"
        },
        "default_title": "Dark Background and Light Text",
        "default_popup": "ui\/configure-for-current-tab-panel.html"
    },
    "options_ui": {
        "page": "ui\/preferences.html",
        "browser_style": false,
        "open_in_tab": true
    },
    "permissions": [
        "",
        "tabs",
        "storage",
        "notifications",
        "webRequest",
        "webRequestBlocking"
    ]
}