Chromacy

Inspect webpages for users with different types of color blindness.

Cos'è Chromacy?

Chromacy è un'estensione di Chrome sviluppata da Artem Legotin, e la sua funzione principale è "Inspect webpages for users with different types of color blindness.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Chromacy

Scarica i file di estensione Chromacy in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Chromacy Chromacy
ID cheffcoiecbknaodamfpeckocknfenkb
URL Ufficiale https://chrome.google.com/webstore/detail/chromacy/cheffcoiecbknaodamfpeckocknfenkb
Descrizione Inspect webpages for users with different types of color blindness.
Dimensione del File 25.38 KB
Conteggio Installazioni 238
Versione Corrente 1.3
Ultimo Aggiornamento 2018-02-20
Data di Pubblicazione 2018-02-20
Valutazione 4.60/5 Totale 5 Valutazioni
Sviluppatore Artem Legotin
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}