Fix Contrast

Fix color contrast issues on websites automatically.

Qu'est-ce que Fix Contrast ?

Fix Contrast est une extension Chrome développée par Firstversionist, et sa fonction principale est "Fix color contrast issues on websites automatically.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Fix Contrast

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

                        Low contrast text is the most common accessibility issue and affects 85% of pages. Text with sufficient contrast makes text readable to all users, including those with low vision, color blindness or environmental interference.

This extension will automatically fix low color contrast on any site you visit. Set your minimum level of contrast and this extension will automatically force any site you visit to meet your preferences. 

Make every site readable without overwriting the rest of the design. Easily pick between ""Medium"" (WCAG AA level) and ""High"" (WCAG AAA level) contrast and optionally force the background color to change when needed as well for optimal readability.

Fix Contrast is free, does not run any external code, has no tracking and is supported by the Polypane browser for developers. For more, visit https://polypane.com

We are always looking for people to translate it into more languages, please reach out!                    

Informations de Base sur l'Extension

Nom Fix Contrast Fix Contrast
ID pbbcgecjmpkglppfjjggkkbhdnlemhkg
URL Officiel https://chromewebstore.google.com/detail/fix-contrast/pbbcgecjmpkglppfjjggkkbhdnlemhkg
Description Fix color contrast issues on websites automatically.
Taille du Fichier 83.52 KB
Nombre d'Installations 1,108
Version Actuelle 1.0.3
Dernière Mise à Jour 2022-04-14
Date de Publication 2021-05-24
Évaluation 3.00/5 Total 3 Évaluations
Développeur Firstversionist
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://fixa11y.com
URL de la Page d'Aide https://fixa11y.com
URL de la Page de Politique de Confidentialité https://firstversionist.com/privacy
Langues Prises en Charge de,en,nl,pt-BR,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appname__",
    "version": "1.0.3",
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_appname__",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "all_frames": true,
            "js": [
                "contentScript.js"
            ]
        }
    ]
}