TFS 2015 Team Room Notifications

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

Cos'è TFS 2015 Team Room Notifications?

TFS 2015 Team Room Notifications è un'estensione di Chrome sviluppata da a.granpre, e la sua funzione principale è "This extension shows a desktop notification when a message is received in tfs team room".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione TFS 2015 Team Room Notifications

Scarica i file di estensione TFS 2015 Team Room Notifications 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

                        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                    

Informazioni di Base sull'Estensione

Nome TFS 2015 Team Room Notifications TFS 2015 Team Room Notifications
ID llohcidbibnpeddcppapgkpnhhecnlfn
URL Ufficiale https://chromewebstore.google.com/detail/tfs-2015-team-room-notifi/llohcidbibnpeddcppapgkpnhhecnlfn
Descrizione This extension shows a desktop notification when a message is received in tfs team room
Dimensione del File 40.18 KB
Conteggio Installazioni 29
Versione Corrente 1.40
Ultimo Aggiornamento 2016-11-04
Data di Pubblicazione 2016-11-04
Valutazione 1.50/5 Totale 2 Valutazioni
Sviluppatore a.granpre
Tipo di Pagamento free
Lingue Supportate 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
    }
}