Fix Contrast

Fix color contrast issues on websites automatically.

Cos'è Fix Contrast?

Fix Contrast è un'estensione di Chrome sviluppata da Firstversionist, e la sua funzione principale è "Fix color contrast issues on websites automatically.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Fix Contrast

Scarica i file di estensione Fix Contrast 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

                        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!                    

Informazioni di Base sull'Estensione

Nome Fix Contrast Fix Contrast
ID pbbcgecjmpkglppfjjggkkbhdnlemhkg
URL Ufficiale https://chromewebstore.google.com/detail/fix-contrast/pbbcgecjmpkglppfjjggkkbhdnlemhkg
Descrizione Fix color contrast issues on websites automatically.
Dimensione del File 83.52 KB
Conteggio Installazioni 1,108
Versione Corrente 1.0.3
Ultimo Aggiornamento 2022-04-14
Data di Pubblicazione 2021-05-24
Valutazione 3.00/5 Totale 3 Valutazioni
Sviluppatore Firstversionist
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://fixa11y.com
URL della Pagina di Aiuto https://fixa11y.com
URL della Pagina della Politica sulla Privacy https://firstversionist.com/privacy
Lingue Supportate 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"
            ]
        }
    ]
}