Colorize

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

Co to jest Colorize?

Colorize to rozszerzenie Chrome opracowane przez nickjlago, a jego główną funkcją jest „Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Colorize

Pobierz pliki rozszerzeń Colorize w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Colorize Colorize
ID ondjojblgobdhbnkamglegldnadeogca
Oficjalny URL https://chromewebstore.google.com/detail/colorize/ondjojblgobdhbnkamglegldnadeogca
Opis Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.
Rozmiar pliku 488 KB
Liczba instalacji 101
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-01-20
Data Publikacji 2023-01-06
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper nickjlago
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://nicklago.com
Obsługiwane Języki 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"
    }
}