Chromacy

Inspect webpages for users with different types of color blindness.

Vad är Chromacy?

Chromacy är en Chrome-tillägg utvecklad av Artem Legotin, och dess huvudfunktion är "Inspect webpages for users with different types of color blindness.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Chromacy-förlängningens CRX-fil

Ladda ner Chromacy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Chromacy Chromacy
ID cheffcoiecbknaodamfpeckocknfenkb
Officiell webbadress https://chrome.google.com/webstore/detail/chromacy/cheffcoiecbknaodamfpeckocknfenkb
Beskrivning Inspect webpages for users with different types of color blindness.
Filstorlek 25.38 KB
Antal Installationer 238
Aktuell Version 1.3
Senast Uppdaterad 2018-02-20
Publiceringsdatum 2018-02-20
Betyg 4.60/5 Totalt 5 Betyg
Utvecklare Artem Legotin
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}