Message status for the color blind

An easier way for the color blind to identify WhatsApp Web™ message delivery status.

Что такое Message status for the color blind?

Message status for the color blind - это расширение Chrome, разработанное tomasmartty, и его основная функция - "An easier way for the color blind to identify WhatsApp Web™ message delivery status.".

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

screenshot

Скачать файл CRX расширения Message status for the color blind

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

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

                        This extension will simply make blue double-tick images a full round circle instead. Works for chat messages as well as those in the sidebar.

Just install and you're ready to go!

Update: Updated the extension to work with the latest WhatsApp Web version. Since adding a full circle is not possible anymore due to a different HTML structure and CSS classes, the blue double tick is now just re-colored with a brighter blue to make it more noticeable from the regular green double check.

---

This is an unofficial enhacement for WhatsApp Web. This extension is not related in any way to WhatsApp Inc.                    

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

Название Message status for the color blind Message status for the color blind
ID ciiglfdgiegdnhkfpkeabhfllcalijda
Официальный URL https://chrome.google.com/webstore/detail/message-status-for-the-co/ciiglfdgiegdnhkfpkeabhfllcalijda
Описание An easier way for the color blind to identify WhatsApp Web™ message delivery status.
Размер файла 11.44 KB
Количество установок 170
Текущая Версия 1.4
Последнее Обновление 2020-04-20
Дата публикации 2020-04-20
Рейтинг 4.38/5 Всего 8 оценок
Разработчик tomasmartty
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Message status for the color blind",
    "version": "1.4",
    "description": "An easier way for the color blind to identify WhatsApp Web\u2122 message delivery status.",
    "permissions": [
        "declarativeContent"
    ],
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/web.whatsapp.com\/"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}