RGBlind

Simulate color blindness in your web browser.

Что такое RGBlind?

RGBlind - это расширение Chrome, разработанное https://www.rgblind.se, и его основная функция - "Simulate color blindness in your web browser.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        RGBlind is an open-source real-time color blindness simulation tool for the web.

It is developed to:
- Help organizations, designers and web developers understand how color blind users might experience their webpages.
- Help designers and web developers understand the problematics with designing for color blind users.

RGBlind helps designing better structured webpages with high readability, for everyone.                    

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

Название RGBlind RGBlind
ID kjlmmjnmmlfamgddfglhaoklpjjplbhc
Официальный URL https://chromewebstore.google.com/detail/rgblind/kjlmmjnmmlfamgddfglhaoklpjjplbhc
Описание Simulate color blindness in your web browser.
Размер файла 65.85 KB
Количество установок 2,052
Текущая Версия 1.0.3
Последнее Обновление 2017-01-06
Дата публикации 2017-01-06
Рейтинг 4.40/5 Всего 5 оценок
Разработчик https://www.rgblind.se
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.rgblind.se
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RGBlind",
    "description": "Simulate color blindness in your web browser.",
    "version": "1.0.3",
    "homepage_url": "http:\/\/www.rgblind.se",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                ""
            ],
            "js": [
                "rgblind\/rgblind.js",
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "icons\/128.png",
        "default_popup": "popup.html",
        "default_title": "RGBlind - simulate color blindness."
    },
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "https:\/\/ajax.googleapis.com\/"
    ],
    "web_accessible_resources": [
        "rgblind\/rgblind.svg",
        "rgblind\/rgblind-inject.css"
    ]
}