DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

什么是DigitalA11Y Color Contrast Checker?

DigitalA11Y Color Contrast Checker是由https://digitala11y.com开发的Chrome扩展程序,该扩展的主要功能是“Accessibility color contrast checker and color pallet generator”。

扩展截图

screenshot
screenshot
screenshot

下载DigitalA11Y Color Contrast Checker扩展crx文件

下载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"
            ]
        }
    ]
}