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 là gì?

TFS 2015 Team Room Notifications là một tiện ích mở rộng Chrome được phát triển bởi a.granpre, và tính năng chính của nó là "This extension shows a desktop notification when a message is received in tfs team room".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TFS 2015 Team Room Notifications

Tải xuống các tệp mở rộng TFS 2015 Team Room Notifications dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TFS 2015 Team Room Notifications TFS 2015 Team Room Notifications
ID llohcidbibnpeddcppapgkpnhhecnlfn
URL Chính Thức https://chromewebstore.google.com/detail/tfs-2015-team-room-notifi/llohcidbibnpeddcppapgkpnhhecnlfn
Mô tả This extension shows a desktop notification when a message is received in tfs team room
Kích Thước Tệp 40.18 KB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 1.40
Cập Nhật Lần Cuối 2016-11-04
Ngày Phát Hành 2016-11-04
Đánh Giá 1.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển a.granpre
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}