TFS 2015 Team Room Notifications

This extension shows a desktop notification when a message is received in tfs team room

Что такое TFS 2015 Team Room Notifications?

TFS 2015 Team Room Notifications - это расширение Chrome, разработанное a.granpre, и его основная функция - "This extension shows a desktop notification when a message is received in tfs team room".

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

screenshot
screenshot

Скачать файл CRX расширения TFS 2015 Team Room Notifications

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

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

                        Shows notification when a team room chat message is posted in a team room that you opened.

v1.39 removed hardcoded DefaultCollection from code
v1.40 cleanup fix syntax errors                    

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

Название TFS 2015 Team Room Notifications TFS 2015 Team Room Notifications
ID llohcidbibnpeddcppapgkpnhhecnlfn
Официальный URL https://chromewebstore.google.com/detail/tfs-2015-team-room-notifi/llohcidbibnpeddcppapgkpnhhecnlfn
Описание This extension shows a desktop notification when a message is received in tfs team room
Размер файла 40.18 KB
Количество установок 29
Текущая Версия 1.40
Последнее Обновление 2016-11-04
Дата публикации 2016-11-04
Рейтинг 1.50/5 Всего 2 оценок
Разработчик a.granpre
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TFS 2015 Team Room Notifications",
    "description": "This extension shows a desktop notification when a message is received in tfs team room",
    "version": "1.40",
    "author": "Antoine Granpré Molière",
    "browser_action": {
        "default_icon": "favicon.ico"
    },
    "permissions": [
        "activeTab",
        "notifications",
        "tabs",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "chatNotifier.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}