Chromacy

Inspect webpages for users with different types of color blindness.

What is Chromacy?

Chromacy is a Chrome extension developed by Artem Legotin, and its main feature is "Inspect webpages for users with different types of color blindness.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Chromacy Extension CRX File

Download Chromacy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Chromacy Chromacy
ID cheffcoiecbknaodamfpeckocknfenkb
Official URL https://chrome.google.com/webstore/detail/chromacy/cheffcoiecbknaodamfpeckocknfenkb
Description Inspect webpages for users with different types of color blindness.
File Size 25.38 KB
Installation Count 238
Current Version 1.3
Last Updated 2018-02-20
Publish Date 2018-02-20
Rating 4.60/5 Total 5 Ratings
Developer Artem Legotin
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}