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
官方網址 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"
            ]
        }
    ]
}