TFS 2015 Team Room Notifications

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

What is TFS 2015 Team Room Notifications?

TFS 2015 Team Room Notifications is a Chrome extension developed by a.granpre, and its main feature is "This extension shows a desktop notification when a message is received in tfs team room".

Extension Screenshots

screenshot
screenshot

Download TFS 2015 Team Room Notifications Extension CRX File

Download TFS 2015 Team Room Notifications extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name TFS 2015 Team Room Notifications TFS 2015 Team Room Notifications
ID llohcidbibnpeddcppapgkpnhhecnlfn
Official URL https://chromewebstore.google.com/detail/tfs-2015-team-room-notifi/llohcidbibnpeddcppapgkpnhhecnlfn
Description This extension shows a desktop notification when a message is received in tfs team room
File Size 40.18 KB
Installation Count 29
Current Version 1.40
Last Updated 2016-11-04
Publish Date 2016-11-04
Rating 1.50/5 Total 2 Ratings
Developer a.granpre
Payment Type free
Supported Languages 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
    }
}