TFS 2015 Team Room Notifications

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

Wat is TFS 2015 Team Room Notifications?

TFS 2015 Team Room Notifications is een Chrome-extensie ontwikkeld door a.granpre, en de belangrijkste functie is "This extension shows a desktop notification when a message is received in tfs team room".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie TFS 2015 Team Room Notifications

Download TFS 2015 Team Room Notifications-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam TFS 2015 Team Room Notifications TFS 2015 Team Room Notifications
ID llohcidbibnpeddcppapgkpnhhecnlfn
Officiële URL https://chromewebstore.google.com/detail/tfs-2015-team-room-notifi/llohcidbibnpeddcppapgkpnhhecnlfn
Beschrijving This extension shows a desktop notification when a message is received in tfs team room
Bestandsgrootte 40.18 KB
Aantal Installaties 29
Huidige Versie 1.40
Laatst Bijgewerkt 2016-11-04
Publicatiedatum 2016-11-04
Beoordeling 1.50/5 Totaal 2 Beoordelingen
Ontwikkelaar a.granpre
Betalingswijze free
Ondersteunde Talen 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
    }
}