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ファイルをダウンロード

Deluminate拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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