DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

What is DigitalA11Y Color Contrast Checker?

DigitalA11Y Color Contrast Checker is a Chrome extension developed by https://digitala11y.com, and its main feature is "Accessibility color contrast checker and color pallet generator".

Extension Screenshots

screenshot
screenshot
screenshot

Download DigitalA11Y Color Contrast Checker Extension CRX File

Download DigitalA11Y Color Contrast Checker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name DigitalA11Y Color Contrast Checker DigitalA11Y Color Contrast Checker
ID hfcoldjibhgbnlambdiecfneiegagkhi
Official URL https://chromewebstore.google.com/detail/digitala11y-color-contras/hfcoldjibhgbnlambdiecfneiegagkhi
Description Accessibility color contrast checker and color pallet generator
File Size 71.24 KB
Installation Count 899
Current Version 1.0
Last Updated 2023-01-25
Publish Date 2023-01-25
Rating 4.50/5 Total 4 Ratings
Developer https://digitala11y.com
Email [email protected]
Payment Type free
Extension Website https://www.digitala11y.com/
Help Page URL https://www.digitala11y.com/contact/
Privacy Policy Page URL https://www.digitala11y.com/privacy-policy
Supported Languages 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"
            ]
        }
    ]
}