Colour Contrast Checker

Check the contrast between different colour combinations against WCAG standards

Qu'est-ce que Colour Contrast Checker ?

Colour Contrast Checker est une extension Chrome développée par https://colourcontrast.cc, et sa fonction principale est "Check the contrast between different colour combinations against WCAG standards".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

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

Téléchargez les fichiers d'extension Colour 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

                        Compare the contrast ratio of 2 colours, background and foreground, within a webpage against level 2 of the Web Content Accessibility Guidelines (WCAG).

*More information about understanding colour contrast:
https://webaim.org/articles/contrast/

Features

- Use the text fields to compare colours using Hex codes or colour names
- Use the colour picker tool to compare colours on a webpage
- Store up to 6 colour combinations you have compared (uses local storage) to refer back to later
- Quickly reverse background and foreground colours
- Generate a share link of colours compared

Once you have installed the extension you may need to reload the webpage you are currently on to begin using the extension.                    

Informations de Base sur l'Extension

Nom Colour Contrast Checker Colour Contrast Checker
ID nmmjeclfkgjdomacpcflgdkgpphpmnfe
URL Officiel https://chromewebstore.google.com/detail/colour-contrast-checker/nmmjeclfkgjdomacpcflgdkgpphpmnfe
Description Check the contrast between different colour combinations against WCAG standards
Taille du Fichier 418 KB
Nombre d'Installations 36,215
Version Actuelle 1.4.2
Dernière Mise à Jour 2023-05-17
Date de Publication 2019-09-06
Évaluation 4.03/5 Total 29 Évaluations
Développeur https://colourcontrast.cc
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://colourcontrast.cc/
URL de la Page d'Aide https://github.com/Pushedskydiver/CC-Checker-Chrome-Extension/issues
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Colour Contrast Checker",
    "short_name": "CC Checker",
    "description": "Check the contrast between different colour combinations against WCAG standards",
    "version": "1.4.2",
    "action": {
        "default_title": "Open CC Checker"
    },
    "icons": {
        "16": ".\/favicons\/favicon-16x16.png",
        "48": ".\/favicons\/favicon-48x48.png",
        "128": ".\/favicons\/favicon-128x128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "index.html",
                "fonts\/avenir-next-variable.woff2"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "background": {
        "service_worker": ".\/app\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/app\/content.js"
            ]
        }
    ]
}