TFS 2015 Team Room Notifications

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

什么是TFS 2015 Team Room Notifications?

TFS 2015 Team Room Notifications是由a.granpre开发的Chrome扩展程序,该扩展的主要功能是“This extension shows a desktop notification when a message is received in tfs team room”。

扩展截图

screenshot
screenshot

下载TFS 2015 Team Room Notifications扩展crx文件

下载TFS 2015 Team Room Notifications扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 TFS 2015 Team Room Notifications TFS 2015 Team Room Notifications
ID llohcidbibnpeddcppapgkpnhhecnlfn
官方URL https://chromewebstore.google.com/detail/tfs-2015-team-room-notifi/llohcidbibnpeddcppapgkpnhhecnlfn
简介 This extension shows a desktop notification when a message is received in tfs team room
文件大小 40.18 KB
安装次数 29
当前版本 1.40
更新时间 2016-11-04
上架时间 2016-11-04
评分 1.50/5 共2次评分
开发者 a.granpre
付费类型 free
支持的语言 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
    }
}