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
Eメール [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"
    }
}