Colorize

Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.

Was ist Colorize?

Colorize ist eine Chrome-Erweiterung, die von nickjlago entwickelt wurde, und ihr Hauptmerkmal ist "Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Colorize-Erweiterungs-CRX-Datei herunterladen

Laden Sie Colorize-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Colorize allows colorblind users to distinguish colors by correcting for their type of color vision deficiency (Protanopia, Deuteranopia, Tritanopia). 

Users can also increase saturation of images on the Chrome browser to more clearly differentiate colors.

Colorize works by utilizing the LMS Daltonization Algorithm. The idea of the algorithm is to convert the RGB values into LMS, compensate for the values that are being lost from the type of color blindness, and convert the values back using the CVD matrix. This method is notable for being the most accurate in correcting for color blindness.

Works on websites like Google Images, YouTube, Pinterest and countless others. Available in all regions.

Install Colorize to view Chrome through a new perspective.                    

Grundlegende Informationen zur Erweiterung

Name Colorize Colorize
ID ondjojblgobdhbnkamglegldnadeogca
Offizielle URL https://chromewebstore.google.com/detail/colorize/ondjojblgobdhbnkamglegldnadeogca
Beschreibung Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.
Dateigröße 488 KB
Installationsanzahl 101
Aktuelle Version 1.0.0
Letztes Update 2023-01-20
Veröffentlichungsdatum 2023-01-06
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler nickjlago
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://nicklago.com
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Colorize",
    "version": "1.0.0",
    "description": "Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js",
                "background.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "Colorize Logo Face Square.png",
            "48": "Colorize Logo Face Square.png",
            "128": "Colorize Logo Face Square.png"
        }
    },
    "icons": {
        "16": "Colorize Logo Face Square.png",
        "48": "Colorize Logo Face Square.png",
        "128": "Colorize Logo Face Square.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    }
}