Colour Contrast Checker

Check the contrast between different colour combinations against WCAG standards

Colour Contrast Checker là gì?

Colour Contrast Checker là một tiện ích mở rộng Chrome được phát triển bởi https://colourcontrast.cc, và tính năng chính của nó là "Check the contrast between different colour combinations against WCAG standards".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Colour Contrast Checker

Tải xuống các tệp mở rộng Colour Contrast Checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Colour Contrast Checker Colour Contrast Checker
ID nmmjeclfkgjdomacpcflgdkgpphpmnfe
URL Chính Thức https://chromewebstore.google.com/detail/colour-contrast-checker/nmmjeclfkgjdomacpcflgdkgpphpmnfe
Mô tả Check the contrast between different colour combinations against WCAG standards
Kích Thước Tệp 418 KB
Số Lần Cài Đặt 36,215
Phiên Bản Hiện Tại 1.4.2
Cập Nhật Lần Cuối 2023-05-17
Ngày Phát Hành 2019-09-06
Đánh Giá 4.03/5 Tổng số 29 Đánh Giá
Nhà Phát Triển https://colourcontrast.cc
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://colourcontrast.cc/
URL Trang Trợ Giúp https://github.com/Pushedskydiver/CC-Checker-Chrome-Extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}