TFS 2015 Team Room Notifications

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

Co to jest TFS 2015 Team Room Notifications?

TFS 2015 Team Room Notifications to rozszerzenie Chrome opracowane przez a.granpre, a jego główną funkcją jest „This extension shows a desktop notification when a message is received in tfs team room”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia TFS 2015 Team Room Notifications

Pobierz pliki rozszerzeń TFS 2015 Team Room Notifications w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa TFS 2015 Team Room Notifications TFS 2015 Team Room Notifications
ID llohcidbibnpeddcppapgkpnhhecnlfn
Oficjalny URL https://chromewebstore.google.com/detail/tfs-2015-team-room-notifi/llohcidbibnpeddcppapgkpnhhecnlfn
Opis This extension shows a desktop notification when a message is received in tfs team room
Rozmiar pliku 40.18 KB
Liczba instalacji 29
Aktualna Wersja 1.40
Ostatnia Aktualizacja 2016-11-04
Data Publikacji 2016-11-04
Ocena 1.50/5 Łącznie 2 Oceny
Deweloper a.granpre
Typ Płatności free
Obsługiwane Języki 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
    }
}