Deluminate

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

Deluminate क्या है?

Deluminate abstiles द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Invert the luminance of a website to make it easier on the eyes."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Deluminate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}