Chromacy

Inspect webpages for users with different types of color blindness.

Chromacy क्या है?

Chromacy Artem Legotin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Inspect webpages for users with different types of color blindness."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chromacy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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