Chromacy

Inspect webpages for users with different types of color blindness.

什么是Chromacy?

Chromacy是由Artem Legotin开发的Chrome扩展程序,该扩展的主要功能是“Inspect webpages for users with different types of color blindness.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Chromacy扩展crx文件

下载Chromacy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Chromacy Chromacy
ID cheffcoiecbknaodamfpeckocknfenkb
官方URL https://chrome.google.com/webstore/detail/chromacy/cheffcoiecbknaodamfpeckocknfenkb
简介 Inspect webpages for users with different types of color blindness.
文件大小 25.38 KB
安装次数 238
当前版本 1.3
更新时间 2018-02-20
上架时间 2018-02-20
评分 4.60/5 共5次评分
开发者 Artem Legotin
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}