Chromacy

Inspect webpages for users with different types of color blindness.

Chromacy là gì?

Chromacy là một tiện ích mở rộng Chrome được phát triển bởi Artem Legotin, và tính năng chính của nó là "Inspect webpages for users with different types of color blindness.".

Ả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 Chromacy

Tải xuống các tệp mở rộng Chromacy 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

                        Different types of color blindness affects a significant number of people. This extension helps you to test webpages for these users. It can be useful for for UX-designers and web-developers.                    

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

Tên Chromacy Chromacy
ID cheffcoiecbknaodamfpeckocknfenkb
URL Chính Thức https://chrome.google.com/webstore/detail/chromacy/cheffcoiecbknaodamfpeckocknfenkb
Mô tả Inspect webpages for users with different types of color blindness.
Kích Thước Tệp 25.38 KB
Số Lần Cài Đặt 238
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2018-02-20
Ngày Phát Hành 2018-02-20
Đánh Giá 4.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Artem Legotin
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chromacy",
    "description": "Inspect webpages for users with different types of color blindness.",
    "version": "1.3",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "background",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon-16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}