Display Unread Count in Tab for OWA

This will check for unread messages when using the Outlook Web App and put the unread count in the Outlook Web App tab.

Что такое Display Unread Count in Tab for OWA?

Display Unread Count in Tab for OWA - это расширение Chrome, разработанное Jared Pavan, и его основная функция - "This will check for unread messages when using the Outlook Web App and put the unread count in the Outlook Web App tab.".

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

screenshot

Скачать файл CRX расширения Display Unread Count in Tab for OWA

Скачайте файлы расширений Display Unread Count in Tab for OWA в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        I found myself annoyed by the Outlook Web App because one has to actually click on the OWA tab to see if you have any messages. With this extension, one can work in other tabs and know if they have any messages waiting for them or not.

This extension works with the OWA URL format https://*/owa/*

Support the development of this extension via Bitcoin or Dogecoin (for transparency)!
Bitcoin: 1DjZehKXGKAfecbcDYsjzT7pTmCXt5mFE1
Dogecoin: DPWbVMZespWTk9WVZQ8D5u25EPHvWiDrVn                    

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

Название Display Unread Count in Tab for OWA Display Unread Count in Tab for OWA
ID eelenpkmbodgopefpbdghdmbeakcfnhc
Официальный URL https://chromewebstore.google.com/detail/display-unread-count-in-t/eelenpkmbodgopefpbdghdmbeakcfnhc
Описание This will check for unread messages when using the Outlook Web App and put the unread count in the Outlook Web App tab.
Размер файла 26.93 KB
Количество установок 163
Текущая Версия 1.2.3
Последнее Обновление 2014-01-03
Дата публикации 2014-01-03
Рейтинг 3.88/5 Всего 8 оценок
Разработчик Jared Pavan
Тип оплаты free
Официальный сайт расширения https://github.com/pavanjared/OWA-Unread-Message-Count
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Display Unread Count in Tab for OWA",
    "manifest_version": 2,
    "version": "1.2.3",
    "description": "This will check for unread messages when using the Outlook Web App and put the unread count in the Outlook Web App tab.",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/owa\/*"
            ],
            "js": [
                "Unread_Count_OWA.user.js"
            ]
        }
    ]
}