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
官方網址 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"
    }
}