Fix Contrast

Fix color contrast issues on websites automatically.

Что такое Fix Contrast?

Fix Contrast - это расширение Chrome, разработанное Firstversionist, и его основная функция - "Fix color contrast issues on websites automatically.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Fix Contrast

Скачайте файлы расширений Fix Contrast в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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!                    

Основная информация о расширении

Название Fix Contrast Fix Contrast
ID pbbcgecjmpkglppfjjggkkbhdnlemhkg
Официальный URL https://chromewebstore.google.com/detail/fix-contrast/pbbcgecjmpkglppfjjggkkbhdnlemhkg
Описание Fix color contrast issues on websites automatically.
Размер файла 83.52 KB
Количество установок 1,108
Текущая Версия 1.0.3
Последнее Обновление 2022-04-14
Дата публикации 2021-05-24
Рейтинг 3.00/5 Всего 3 оценок
Разработчик Firstversionist
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://fixa11y.com
URL страницы помощи https://fixa11y.com
URL страницы политики конфиденциальности https://firstversionist.com/privacy
Поддерживаемые языки 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"
            ]
        }
    ]
}