Colorize

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

什么是Colorize?

Colorize是由nickjlago开发的Chrome扩展程序,该扩展的主要功能是“Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Colorize扩展crx文件

下载Colorize扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Colorize Colorize
ID ondjojblgobdhbnkamglegldnadeogca
官方URL https://chromewebstore.google.com/detail/colorize/ondjojblgobdhbnkamglegldnadeogca
简介 Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.
文件大小 488 KB
安装次数 101
当前版本 1.0.0
更新时间 2023-01-20
上架时间 2023-01-06
评分 5.00/5 共2次评分
开发者 nickjlago
电子邮箱 [email protected]
付费类型 free
扩展官网 https://nicklago.com
支持的语言 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"
    }
}