TFS Chat Notifier

This extension notifies when you are called in a chat.

Cos'è TFS Chat Notifier?

TFS Chat Notifier è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension notifies when you are called in a chat.".

Scarica il file CRX dell'estensione TFS Chat Notifier

Scarica i file di estensione TFS Chat Notifier in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome TFS Chat Notifier TFS Chat Notifier
ID hkcpebjpidlbpammcbpepkgmldcpiehd
URL Ufficiale https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd
Descrizione This extension notifies when you are called in a chat.
Dimensione del File 107 KB
Conteggio Installazioni 14
Versione Corrente 1.2
Ultimo Aggiornamento 2016-07-09
Data di Pubblicazione 2016-07-09
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate 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"
}