DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

Co je DigitalA11Y Color Contrast Checker?

DigitalA11Y Color Contrast Checker je rozšíření Chrome vyvinuté https://digitala11y.com, a jeho hlavní funkcí je „Accessibility color contrast checker and color pallet generator“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření DigitalA11Y Color Contrast Checker

Stáhněte si soubory rozšíření DigitalA11Y Color Contrast Checker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název DigitalA11Y Color Contrast Checker DigitalA11Y Color Contrast Checker
ID hfcoldjibhgbnlambdiecfneiegagkhi
Oficiální URL https://chromewebstore.google.com/detail/digitala11y-color-contras/hfcoldjibhgbnlambdiecfneiegagkhi
Popis Accessibility color contrast checker and color pallet generator
Velikost souboru 71.24 KB
Počet instalací 899
Aktuální Verze 1.0
Poslední Aktualizace 2023-01-25
Datum Vydání 2023-01-25
Hodnocení 4.50/5 Celkem 4 Hodnocení
Vývojář https://digitala11y.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.digitala11y.com/
URL Stránky Nápovědy https://www.digitala11y.com/contact/
URL Stránky Zásad Ochrany Soukromí https://www.digitala11y.com/privacy-policy
Podporované Jazyky 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"
            ]
        }
    ]
}