Chromacy

Inspect webpages for users with different types of color blindness.

Apa itu Chromacy?

Chromacy adalah ekstensi Chrome yang dikembangkan oleh Artem Legotin, dan fitur utamanya adalah "Inspect webpages for users with different types of color blindness.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Chromacy

Unduh file ekstensi Chromacy dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Chromacy Chromacy
ID cheffcoiecbknaodamfpeckocknfenkb
URL Resmi https://chrome.google.com/webstore/detail/chromacy/cheffcoiecbknaodamfpeckocknfenkb
Deskripsi Inspect webpages for users with different types of color blindness.
Ukuran File 25.38 KB
Jumlah Instalasi 238
Versi Saat Ini 1.3
Terakhir Diperbarui 2018-02-20
Tanggal Publikasi 2018-02-20
Penilaian 4.60/5 Total 5 Penilaian
Pengembang Artem Legotin
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}