Chromacy

Inspect webpages for users with different types of color blindness.

Wat is Chromacy?

Chromacy is een Chrome-extensie ontwikkeld door Artem Legotin, en de belangrijkste functie is "Inspect webpages for users with different types of color blindness.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Chromacy

Download Chromacy-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Chromacy Chromacy
ID cheffcoiecbknaodamfpeckocknfenkb
Officiële URL https://chrome.google.com/webstore/detail/chromacy/cheffcoiecbknaodamfpeckocknfenkb
Beschrijving Inspect webpages for users with different types of color blindness.
Bestandsgrootte 25.38 KB
Aantal Installaties 238
Huidige Versie 1.3
Laatst Bijgewerkt 2018-02-20
Publicatiedatum 2018-02-20
Beoordeling 4.60/5 Totaal 5 Beoordelingen
Ontwikkelaar Artem Legotin
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}