DigitalA11Y Color Contrast Checker

Accessibility color contrast checker and color pallet generator

Τι είναι το DigitalA11Y Color Contrast Checker;

Το DigitalA11Y Color Contrast Checker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://digitala11y.com, και η κύρια λειτουργία του είναι "Accessibility color contrast checker and color pallet generator".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης DigitalA11Y Color Contrast Checker

Λήψη αρχείων επέκτασης DigitalA11Y Color Contrast Checker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα DigitalA11Y Color Contrast Checker DigitalA11Y Color Contrast Checker
ID hfcoldjibhgbnlambdiecfneiegagkhi
Επίσημο URL https://chromewebstore.google.com/detail/digitala11y-color-contras/hfcoldjibhgbnlambdiecfneiegagkhi
Περιγραφή Accessibility color contrast checker and color pallet generator
Μέγεθος Αρχείου 71.24 KB
Αριθμός Εγκαταστάσεων 899
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2023-01-25
Ημερομηνία Δημοσίευσης 2023-01-25
Αξιολόγηση 4.50/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://digitala11y.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.digitala11y.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.digitala11y.com/contact/
URL της Σελίδας Πολιτικής Απορρήτου https://www.digitala11y.com/privacy-policy
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}