Deluminate

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

Τι είναι το Deluminate;

Το Deluminate είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον abstiles, και η κύρια λειτουργία του είναι "Invert the luminance of a website to make it easier on the eyes.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Deluminate

Λήψη αρχείων επέκτασης 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"
}