DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

Qu'est-ce que DigitalA11Y Color Contrast Checker ?

DigitalA11Y Color Contrast Checker est une extension Chrome développée par https://digitala11y.com, et sa fonction principale est "Accessibility color contrast checker and color pallet generator".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension DigitalA11Y Color Contrast Checker

Téléchargez les fichiers d'extension DigitalA11Y Color Contrast Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom DigitalA11Y Color Contrast Checker DigitalA11Y Color Contrast Checker
ID hfcoldjibhgbnlambdiecfneiegagkhi
URL Officiel https://chromewebstore.google.com/detail/digitala11y-color-contras/hfcoldjibhgbnlambdiecfneiegagkhi
Description Accessibility color contrast checker and color pallet generator
Taille du Fichier 71.24 KB
Nombre d'Installations 899
Version Actuelle 1.0
Dernière Mise à Jour 2023-01-25
Date de Publication 2023-01-25
Évaluation 4.50/5 Total 4 Évaluations
Développeur https://digitala11y.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.digitala11y.com/
URL de la Page d'Aide https://www.digitala11y.com/contact/
URL de la Page de Politique de Confidentialité https://www.digitala11y.com/privacy-policy
Langues Prises en Charge 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"
            ]
        }
    ]
}