DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

Cos'è DigitalA11Y Color Contrast Checker?

DigitalA11Y Color Contrast Checker è un'estensione di Chrome sviluppata da https://digitala11y.com, e la sua funzione principale è "Accessibility color contrast checker and color pallet generator".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione DigitalA11Y Color Contrast Checker

Scarica i file di estensione DigitalA11Y Color Contrast Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome DigitalA11Y Color Contrast Checker DigitalA11Y Color Contrast Checker
ID hfcoldjibhgbnlambdiecfneiegagkhi
URL Ufficiale https://chromewebstore.google.com/detail/digitala11y-color-contras/hfcoldjibhgbnlambdiecfneiegagkhi
Descrizione Accessibility color contrast checker and color pallet generator
Dimensione del File 71.24 KB
Conteggio Installazioni 899
Versione Corrente 1.0
Ultimo Aggiornamento 2023-01-25
Data di Pubblicazione 2023-01-25
Valutazione 4.50/5 Totale 4 Valutazioni
Sviluppatore https://digitala11y.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.digitala11y.com/
URL della Pagina di Aiuto https://www.digitala11y.com/contact/
URL della Pagina della Politica sulla Privacy https://www.digitala11y.com/privacy-policy
Lingue Supportate 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"
            ]
        }
    ]
}