Colorblind Helper

Minor tweaks to major websites to make them more friendly to colorblind people. Currently servicing okcupid.com and eBay. Let me…

Что такое Colorblind Helper?

Colorblind Helper - это расширение Chrome, разработанное Coby Hausrath, и его основная функция - "Minor tweaks to major websites to make them more friendly to colorblind people. Currently servicing okcupid.com and eBay. Let me…".

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

screenshot

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

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

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

                        Minor tweaks to major websites to make them more friendly to colorblind people.

Currently servicing okcupid.com and eBay.  Let me know if there are particular page elements that give you trouble on any other site and I can add support for your preferences as well. 

OKCupid.com:
Changes the text of (red) unacceptable answers to (red+)bold+italic.
eBay:
Changes the text of (green) winning bids to blue.

credit goes to /u/darthvader666uk for the eBay changes!                    

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

Название Colorblind Helper Colorblind Helper
ID dlonjjgpeedbkjdipiiboelenjdjjbak
Официальный URL https://chrome.google.com/webstore/detail/colorblind-helper/dlonjjgpeedbkjdipiiboelenjdjjbak
Описание Minor tweaks to major websites to make them more friendly to colorblind people. Currently servicing okcupid.com and eBay. Let me…
Размер файла 42.7 KB
Количество установок 171
Текущая Версия 1.1
Последнее Обновление 2014-03-27
Дата публикации 2014-03-27
Рейтинг 4.00/5 Всего 4 оценок
Разработчик Coby Hausrath
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Colorblind Helper",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.okcupid.com\/*"
            ],
            "css": [
                "okcupid.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.ebay.com\/*",
                "*:\/\/*.ebay.com.au\/*",
                "*:\/\/*.ebay.at\/*",
                "*:\/\/*.ebay.be\/*",
                "*:\/\/*.ebay.ca\/*",
                "*:\/\/*.ebay.com.cn\/*",
                "*:\/\/*.ebay.fr\/*",
                "*:\/\/*.ebay.de\/*",
                "*:\/\/*.ebay.com.hk\/*",
                "*:\/\/*.ebay.in\/*",
                "*:\/\/*.ebay.ie\/*",
                "*:\/\/*.ebay.it\/*",
                "*:\/\/*.ebay.com.my\/*",
                "*:\/\/*.ebay.nl\/*",
                "*:\/\/*.ebay.ph\/*",
                "*:\/\/*.ebay.pl\/*",
                "*:\/\/*.ebay.com.sg\/*",
                "*:\/\/*.ebay.es\/*",
                "*:\/\/*.ebay.ch\/*",
                "*:\/\/*.ebay.co.uk\/*"
            ],
            "css": [
                "ebay.css"
            ],
            "run_at": "document_start"
        }
    ],
    "version": "1.1",
    "icons": {
        "128": "icon128.png"
    },
    "short_name": "Colorblind Helper"
}