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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}