Colorize

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

Colorize là gì?

Colorize là một tiện ích mở rộng Chrome được phát triển bởi nickjlago, và tính năng chính của nó là "Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Colorize

Tải xuống các tệp mở rộng Colorize dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Colorize Colorize
ID ondjojblgobdhbnkamglegldnadeogca
URL Chính Thức https://chromewebstore.google.com/detail/colorize/ondjojblgobdhbnkamglegldnadeogca
Mô tả Accessibility tool that helps those with color blindess to distinguish colors by applying a daltonization filter to images.
Kích Thước Tệp 488 KB
Số Lần Cài Đặt 101
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-01-20
Ngày Phát Hành 2023-01-06
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển nickjlago
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://nicklago.com
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}