Better Dark Mode

Give pages a better dark mode by avoiding things like full white text on full black background.

Better Dark Mode란 무엇입니까?

Better Dark Mode은(는) f에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Give pages a better dark mode by avoiding things like full white text on full black background."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Better Dark Mode 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        - Creates a dark mode of any page by inverting the original colors, background-colors, border-colors.
- Unlike most "dark modes," Better Dark Mode reduces eye-strain by not allowing any RGB values below 50 or above 200 by default.  Darkness and brightness limits can be customized by user.

Potential updates:
- Find a way to avoid flash of non-darkened page before extension runs on page load
- Store the active/inactive state as well as darkness/brightness limit variables Chrome-wide (currently using localStorage)                    

확장 프로그램 기본 정보

이름 Better Dark Mode Better Dark Mode
ID ibkdocnpanhgcbbfadninaflpgjecmod
공식 URL https://chromewebstore.google.com/detail/better-dark-mode/ibkdocnpanhgcbbfadninaflpgjecmod
설명 Give pages a better dark mode by avoiding things like full white text on full black background.
파일 크기 32.05 KB
설치 횟수 5,638
현재 버전 0.9.4
최근 업데이트 2017-09-23
출시 날짜 2017-09-23
평점 3.46/5 총 26 개의 평점
개발자 f
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Dark Mode",
    "short_name": "Better Dark",
    "description": "Give pages a better dark mode by avoiding things like full white text on full black background.",
    "version": "0.9.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "insert.js"
            ]
        }
    ]
}