TFS 2015 Team Room Notifications

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

Was ist TFS 2015 Team Room Notifications?

TFS 2015 Team Room Notifications ist eine Chrome-Erweiterung, die von a.granpre entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows a desktop notification when a message is received in tfs team room".

Erweiterungsscreenshots

screenshot
screenshot

TFS 2015 Team Room Notifications-Erweiterungs-CRX-Datei herunterladen

Laden Sie TFS 2015 Team Room Notifications-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name TFS 2015 Team Room Notifications TFS 2015 Team Room Notifications
ID llohcidbibnpeddcppapgkpnhhecnlfn
Offizielle URL https://chromewebstore.google.com/detail/tfs-2015-team-room-notifi/llohcidbibnpeddcppapgkpnhhecnlfn
Beschreibung This extension shows a desktop notification when a message is received in tfs team room
Dateigröße 40.18 KB
Installationsanzahl 29
Aktuelle Version 1.40
Letztes Update 2016-11-04
Veröffentlichungsdatum 2016-11-04
Bewertung 1.50/5 Insgesamt 2 Bewertungen
Entwickler a.granpre
Zahlungsart free
Unterstützte Sprachen 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
    }
}