Deluminate

Invert the luminance of a website to make it easier on the eyes.

Deluminate란 무엇입니까?

Deluminate은(는) abstiles에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Invert the luminance of a website to make it easier on the eyes."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Deluminate 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ## What's new in 0.7.6? ##

* Mostly fix issues introduced by recent Chrome updates

## What's new in 0.7.6? ##

* Fix another blinking scrollbar issue affecting Windows 8+ users at different zoom levels.

## What's new in 0.7.5? ##

* Correctly display "unknown" image types in "Keep Images Normal" mode
* Fix blinking scrollbar issue

Invert the brightness of the web without changing the colors! Useful as a night mode to darken most bright web sites (like Google), or just for making the web soothing black instead of glaring white. Similar to the "High Contrast" or "Hacker Vision" extensions, but tries not to ruin images by blowing out the contrast or changing the colors.

Warning: because of the way this extension inverts the luminance of rendered pages, it may cause noticeable slowdowns for some users. If this happens, you may prefer another extension that uses custom CSS to set the default background and text color of web pages.                    

확장 프로그램 기본 정보

이름 Deluminate Deluminate
ID iebboopaeangfpceklajfohhbpkkfiaa
공식 URL https://chromewebstore.google.com/detail/deluminate/iebboopaeangfpceklajfohhbpkkfiaa
설명 Invert the luminance of a website to make it easier on the eyes.
파일 크기 24.27 KB
설치 횟수 47,359
현재 버전 0.7.7
최근 업데이트 2020-02-04
출시 날짜 2020-02-03
평점 4.35/5 총 996 개의 평점
개발자 abstiles
결제 유형 free
확장 프로그램 웹 사이트 http://deluminate.github.io/
도움말 페이지 URL https://github.com/abstiles/deluminate/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "deluminate-128.png",
        "default_popup": "popup.html",
        "default_title": "Deluminate (Shift+F11)"
    },
    "commands": {
        "command_toggle_global": {
            "description": "Toggle Deluminate on\/off"
        },
        "command_toggle_site": {
            "description": "Toggle inversion on a site"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "deluminate.js"
            ],
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_start"
        }
    ],
    "description": "Invert the luminance of a website to make it easier on the eyes.",
    "icons": {
        "128": "deluminate-128.png"
    },
    "name": "Deluminate",
    "manifest_version": 2,
    "options_page": "options.html",
    "permissions": [
        "",
        "tabs"
    ],
    "web_accessible_resources": [
        "deluminate.css"
    ],
    "version": "0.7.7"
}