TFS Chat Notifier

This extension notifies when you are called in a chat.

Co je TFS Chat Notifier?

TFS Chat Notifier je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This extension notifies when you are called in a chat.“.

Stáhnout soubor CRX rozšíření TFS Chat Notifier

Stáhněte si soubory rozšíření TFS Chat Notifier ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název TFS Chat Notifier TFS Chat Notifier
ID hkcpebjpidlbpammcbpepkgmldcpiehd
Oficiální URL https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd
Popis This extension notifies when you are called in a chat.
Velikost souboru 107 KB
Počet instalací 14
Aktuální Verze 1.2
Poslední Aktualizace 2016-07-09
Datum Vydání 2016-07-09
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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"
}