Colour Contrast Checker

Check the contrast between different colour combinations against WCAG standards

Colour Contrast Checkerคืออะไร?

Colour Contrast Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://colourcontrast.cc และคุณลักษณะหลักของมันคือ "Check the contrast between different colour combinations against WCAG standards"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Compare the contrast ratio of 2 colours, background and foreground, within a webpage against level 2 of the Web Content Accessibility Guidelines (WCAG).

*More information about understanding colour contrast:
https://webaim.org/articles/contrast/

Features

- Use the text fields to compare colours using Hex codes or colour names
- Use the colour picker tool to compare colours on a webpage
- Store up to 6 colour combinations you have compared (uses local storage) to refer back to later
- Quickly reverse background and foreground colours
- Generate a share link of colours compared

Once you have installed the extension you may need to reload the webpage you are currently on to begin using the extension.                    

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

ชื่อ Colour Contrast Checker Colour Contrast Checker
ID nmmjeclfkgjdomacpcflgdkgpphpmnfe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/colour-contrast-checker/nmmjeclfkgjdomacpcflgdkgpphpmnfe
คำอธิบาย Check the contrast between different colour combinations against WCAG standards
ขนาดไฟล์ 418 KB
จำนวนการติดตั้ง 36,215
เวอร์ชันปัจจุบัน 1.4.2
อัปเดตครั้งล่าสุด 2023-05-17
วันที่เผยแพร่ 2019-09-06
คะแนน 4.03/5 รวมทั้งหมด 29 คะแนน
ผู้พัฒนา https://colourcontrast.cc
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://colourcontrast.cc/
URL หน้าช่วยเหลือ https://github.com/Pushedskydiver/CC-Checker-Chrome-Extension/issues
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Colour Contrast Checker",
    "short_name": "CC Checker",
    "description": "Check the contrast between different colour combinations against WCAG standards",
    "version": "1.4.2",
    "action": {
        "default_title": "Open CC Checker"
    },
    "icons": {
        "16": ".\/favicons\/favicon-16x16.png",
        "48": ".\/favicons\/favicon-48x48.png",
        "128": ".\/favicons\/favicon-128x128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "fonts\/avenir-next-variable.woff2"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "background": {
        "service_worker": ".\/app\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/app\/content.js"
            ]
        }
    ]
}