Dark mode / night reader

Inverts page colors, showing white text on a dark background

Dark mode / night reader란 무엇입니까?

Dark mode / night reader은(는) o9000에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inverts page colors, showing white text on a dark background"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Dark mode / night reader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Inverts page colors, showing white text on a dark background, to reduce eye strain.

Works especially well for people working during the night or in low light environments.

Click the button in the icon bar to switch between the supported modes:
* Mode 1 (default): invert colors and reduce contrast
* Mode 2: invert colors, normal (high) contrast
* Mode 3: reduce contrast only
* Mode 4: disabled
* Mode 5: inverts colors of text and images (useful for pages containing diagrams with text, but not photos).

The settings are saved separately for each website.

Right click the button to access the Options page, where you can change the default mode (for all pages).

License: GNU GPLv2.

Privacy: this extension respects your privacy; it does not upload any data whatsoever to the Internet. The only setting that is synced via Chrome sync is the default page mode setting; the per-website settings are stored only locally.                    

확장 프로그램 기본 정보

이름 Dark mode / night reader Dark mode / night reader
ID hmafjphdklmdjfcnljjeonfpgafanjjc
공식 URL https://chromewebstore.google.com/detail/dark-mode-night-reader/hmafjphdklmdjfcnljjeonfpgafanjjc
설명 Inverts page colors, showing white text on a dark background
파일 크기 45.36 KB
설치 횟수 10,000
현재 버전 2021.6.12.0
최근 업데이트 2021-09-12
출시 날짜 2020-04-09
평점 4.23/5 총 236 개의 평점
개발자 o9000
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://gitlab.com/o9000/darken
도움말 페이지 URL https://gitlab.com/o9000/darken/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dark mode \/ night reader",
    "description": "Inverts page colors, showing white text on a dark background",
    "version": "2021.6.12.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "css": [
                "style.css"
            ],
            "js": [
                "load.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "Darken",
        "default_icon": {
            "19": "icon-19.png",
            "38": "icon-38.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "options_page": "options.html"
}