DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

Was ist DigitalA11Y Color Contrast Checker?

DigitalA11Y Color Contrast Checker ist eine Chrome-Erweiterung, die von https://digitala11y.com entwickelt wurde, und ihr Hauptmerkmal ist "Accessibility color contrast checker and color pallet generator".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

DigitalA11Y Color Contrast Checker-Erweiterungs-CRX-Datei herunterladen

Laden Sie DigitalA11Y Color Contrast Checker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name DigitalA11Y Color Contrast Checker DigitalA11Y Color Contrast Checker
ID hfcoldjibhgbnlambdiecfneiegagkhi
Offizielle URL https://chromewebstore.google.com/detail/digitala11y-color-contras/hfcoldjibhgbnlambdiecfneiegagkhi
Beschreibung Accessibility color contrast checker and color pallet generator
Dateigröße 71.24 KB
Installationsanzahl 899
Aktuelle Version 1.0
Letztes Update 2023-01-25
Veröffentlichungsdatum 2023-01-25
Bewertung 4.50/5 Insgesamt 4 Bewertungen
Entwickler https://digitala11y.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.digitala11y.com/
Hilfeseite URL https://www.digitala11y.com/contact/
URL der Datenschutzrichtlinien-Seite https://www.digitala11y.com/privacy-policy
Unterstützte Sprachen 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"
            ]
        }
    ]
}