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"
}