Colorize

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

¿Qué es Colorize?

Colorize es una extensión de Chrome desarrollada por nickjlago, y su función principal es "Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Colorize

Descarga archivos de extensión Colorize en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Colorize Colorize
ID ondjojblgobdhbnkamglegldnadeogca
URL Oficial https://chromewebstore.google.com/detail/colorize/ondjojblgobdhbnkamglegldnadeogca
Descripción Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.
Tamaño del Archivo 488 KB
Cantidad de Instalaciones 101
Versión Actual 1.0.0
Última Actualización 2023-01-20
Fecha de Publicación 2023-01-06
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador nickjlago
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://nicklago.com
Idiomas Soportados 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"
    }
}