Chromacy

Inspect webpages for users with different types of color blindness.

ما هو Chromacy؟

Chromacy هو إضافة Chrome تم تطويرها بواسطة Artem Legotin، والميزة الرئيسية لها هي "Inspect webpages for users with different types of color blindness.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Chromacy

قم بتنزيل ملفات الامتداد Chromacy بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}