TFS Chat Notifier

This extension notifies when you are called in a chat.

什么是TFS Chat Notifier?

TFS Chat Notifier是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“This extension notifies when you are called in a chat.”。

下载TFS Chat Notifier扩展crx文件

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

扩展使用说明

                        Monitors a TFS Room chat page and alerts you of new messages or when you were called.                    

扩展基本信息

名称 TFS Chat Notifier TFS Chat Notifier
ID hkcpebjpidlbpammcbpepkgmldcpiehd
官方URL https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd
简介 This extension notifies when you are called in a chat.
文件大小 107 KB
安装次数 14
当前版本 1.2
更新时间 2016-07-09
上架时间 2016-07-09
评分 5.00/5 共1次评分
开发者 Unknown
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TFS Chat Notifier",
    "description": "This extension notifies when you are called in a chat.",
    "version": "1.2",
    "browser_action": {
        "default_icon": "tfschatalert.png"
    },
    "permissions": [
        "tabs",
        "pageCapture",
        "activeTab",
        "storage",
        "notifications"
    ],
    "background": {
        "scripts": [
            "tfschatalert_bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/tfs\/_rooms*"
            ],
            "js": [
                "jquery-1.11.0.js",
                "tfschatalert.js"
            ],
            "all_frames": true
        }
    ],
    "options_page": "options.html"
}