WCAG Color contrast checker

To check the color contrast between foreground and background of the texts

Τι είναι το WCAG Color contrast checker;

Το WCAG Color contrast checker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jorge Rumoroso, και η κύρια λειτουργία του είναι "To check the color contrast between foreground and background of the texts".

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

screenshot

Λήψη αρχείου CRX της επέκτασης WCAG Color contrast checker

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

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

                        It checks the color contrast between the foreground and background of the elements that are in the page according to the WCAG 2.2.

It evaluates the contrast on all elements of the page considering their computed style for the color and background-color CSS properties. In case of these colors are defined with RGBA values, it also considers the opacity to deduce the real color that finally is show.

It can simulate color blindness and evaluate the contrast for the simulations. By this way, developers can see how the pages look for colorblind users. 

The tool also includes two fields in which the colors can be introduced manually to be tested. It also allows to pick the color directly from the documents.

Finally, it auto-refreshes when DOM of the page changes (addition or removing elements), but if the page has many changes, this behavior can be de-activated.

Privacy statement on: https://rumoroso.bitbucket.io/                    

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

Όνομα WCAG Color contrast checker WCAG Color contrast checker
ID plnahcmalebffmaghcpcmpaciebdhgdf
Επίσημο URL https://chromewebstore.google.com/detail/wcag-color-contrast-check/plnahcmalebffmaghcpcmpaciebdhgdf
Περιγραφή To check the color contrast between foreground and background of the texts
Μέγεθος Αρχείου 163 KB
Αριθμός Εγκαταστάσεων 61,408
Τρέχουσα Έκδοση 3.8.4
Τελευταία Ενημέρωση 2024-03-03
Ημερομηνία Δημοσίευσης 2020-06-26
Αξιολόγηση 4.05/5 Συνολικά 20 Αξιολογήσεις
Προγραμματιστής Jorge Rumoroso
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "author": "Jorge Rumoroso",
    "manifest_version": 3,
    "version": "3.8.4",
    "icons": {
        "48": "icons\/icon_large.png",
        "96": "icons\/icon_large_96x96.png",
        "128": "icons\/icon128_with_margin.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/contrastChecker.js"
            ],
            "css": [
                "css\/inDocumentStyles.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "service-worker.js"
    },
    "permissions": [
        "activeTab",
        "storage",
        "webNavigation"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_icon": {
            "32": "icons\/icon_overlay.png"
        },
        "default_title": "WCAG Color contrast checker"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "html\/*",
                "css\/*",
                "getFrameId",
                "_locales\/*"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ]
}