DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

DigitalA11Y Color Contrast Checker là gì?

DigitalA11Y Color Contrast Checker là một tiện ích mở rộng Chrome được phát triển bởi https://digitala11y.com, và tính năng chính của nó là "Accessibility color contrast checker and color pallet generator".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng DigitalA11Y Color 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

                        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.                    

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

Tên DigitalA11Y Color Contrast Checker DigitalA11Y Color Contrast Checker
ID hfcoldjibhgbnlambdiecfneiegagkhi
URL Chính Thức https://chromewebstore.google.com/detail/digitala11y-color-contras/hfcoldjibhgbnlambdiecfneiegagkhi
Mô tả Accessibility color contrast checker and color pallet generator
Kích Thước Tệp 71.24 KB
Số Lần Cài Đặt 899
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-01-25
Ngày Phát Hành 2023-01-25
Đánh Giá 4.50/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://digitala11y.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.digitala11y.com/
URL Trang Trợ Giúp https://www.digitala11y.com/contact/
URL Trang Chính Sách Bảo Mật https://www.digitala11y.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}