TFS 2015 Team Room Notifications

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

Hvad er TFS 2015 Team Room Notifications?

TFS 2015 Team Room Notifications er en Chrome-udvidelse udviklet af a.granpre, og dens hovedfunktion er "This extension shows a desktop notification when a message is received in tfs team room".

Udvidelsesskærmbilleder

screenshot
screenshot

Download TFS 2015 Team Room Notifications-udvidelses-CRX-fil

Download TFS 2015 Team Room Notifications-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn TFS 2015 Team Room Notifications TFS 2015 Team Room Notifications
ID llohcidbibnpeddcppapgkpnhhecnlfn
Officiel URL https://chromewebstore.google.com/detail/tfs-2015-team-room-notifi/llohcidbibnpeddcppapgkpnhhecnlfn
Beskrivelse This extension shows a desktop notification when a message is received in tfs team room
Filstørrelse 40.18 KB
Antal Installationer 29
Nuværende Version 1.40
Senest Opdateret 2016-11-04
Udgivelsesdato 2016-11-04
Bedømmelse 1.50/5 Samlet 2 Bedømmelser
Udvikler a.granpre
Betalingsmetode free
Understøttede Sprog 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
    }
}