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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}