DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

DigitalA11Y Color Contrast Checkerคืออะไร?

DigitalA11Y Color Contrast Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://digitala11y.com และคุณลักษณะหลักของมันคือ "Accessibility color contrast checker and color pallet generator"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DigitalA11Y Color Contrast Checker

ดาวน์โหลดไฟล์ส่วนขยาย DigitalA11Y Color Contrast Checker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Accessibility color contrast checker and color pallet generator according to WCAG accessibility requirements.
It compares the color contrast ratio between the foreground and background of the elements that are on the page according to WCAG.

Features:
1.	 Be at the top of the web page for easy access
2.	 Picks the background and foreground colors from the web page with just a click.
3.	 Allows the manual input of background and foreground colors in hexadecimal values.
4.	 Provides the current ratio in a jiffy.
5.	 Suggests possible color codes that are contrastive as per WCAG guidelines.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DigitalA11Y Color Contrast Checker DigitalA11Y Color Contrast Checker
ID hfcoldjibhgbnlambdiecfneiegagkhi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/digitala11y-color-contras/hfcoldjibhgbnlambdiecfneiegagkhi
คำอธิบาย Accessibility color contrast checker and color pallet generator
ขนาดไฟล์ 71.24 KB
จำนวนการติดตั้ง 899
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-01-25
วันที่เผยแพร่ 2023-01-25
คะแนน 4.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://digitala11y.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.digitala11y.com/
URL หน้าช่วยเหลือ https://www.digitala11y.com/contact/
URL หน้านโยบายความเป็นส่วนตัว https://www.digitala11y.com/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "DigitalA11Y Color Contrast Checker",
    "description": "Accessibility color contrast checker and color pallet generator",
    "version": "1.0",
    "action": {
        "default_title": "DigitalA11Y Color Contrast Checker"
    },
    "icons": {
        "32": "images\/icon32.png"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "styles.css",
                "index.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "cca.js"
            ]
        }
    ]
}