TFS Chat Notifier

This extension notifies when you are called in a chat.

Что такое TFS Chat Notifier?

TFS Chat Notifier - это расширение Chrome, разработанное Unknown, и его основная функция - "This extension notifies when you are called in a chat.".

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

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

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

                        Monitors a TFS Room chat page and alerts you of new messages or when you were called.                    

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

Название TFS Chat Notifier TFS Chat Notifier
ID hkcpebjpidlbpammcbpepkgmldcpiehd
Официальный URL https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd
Описание This extension notifies when you are called in a chat.
Размер файла 107 KB
Количество установок 14
Текущая Версия 1.2
Последнее Обновление 2016-07-09
Дата публикации 2016-07-09
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Unknown
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TFS Chat Notifier",
    "description": "This extension notifies when you are called in a chat.",
    "version": "1.2",
    "browser_action": {
        "default_icon": "tfschatalert.png"
    },
    "permissions": [
        "tabs",
        "pageCapture",
        "activeTab",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "tfschatalert_bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/tfs\/_rooms*"
            ],
            "js": [
                "jquery-1.11.0.js",
                "tfschatalert.js"
            ],
            "all_frames": true
        }
    ],
    "options_page": "options.html"
}