DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

Vad är DigitalA11Y Color Contrast Checker?

DigitalA11Y Color Contrast Checker är en Chrome-tillägg utvecklad av https://digitala11y.com, och dess huvudfunktion är "Accessibility color contrast checker and color pallet generator".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner DigitalA11Y Color Contrast Checker-förlängningens CRX-fil

Ladda ner DigitalA11Y Color Contrast Checker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn DigitalA11Y Color Contrast Checker DigitalA11Y Color Contrast Checker
ID hfcoldjibhgbnlambdiecfneiegagkhi
Officiell webbadress https://chromewebstore.google.com/detail/digitala11y-color-contras/hfcoldjibhgbnlambdiecfneiegagkhi
Beskrivning Accessibility color contrast checker and color pallet generator
Filstorlek 71.24 KB
Antal Installationer 899
Aktuell Version 1.0
Senast Uppdaterad 2023-01-25
Publiceringsdatum 2023-01-25
Betyg 4.50/5 Totalt 4 Betyg
Utvecklare https://digitala11y.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.digitala11y.com/
Hjälpsida URL https://www.digitala11y.com/contact/
URL till Sekretesspolicy Sidan https://www.digitala11y.com/privacy-policy
Stödda Språk 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"
            ]
        }
    ]
}