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