TFS Chat Notifier

This extension notifies when you are called in a chat.

TFS Chat Notifier là gì?

TFS Chat Notifier là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "This extension notifies when you are called in a chat.".

Tải xuống tệp CRX của tiện ích mở rộng TFS Chat Notifier

Tải xuống các tệp mở rộng TFS Chat Notifier 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

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

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

Tên TFS Chat Notifier TFS Chat Notifier
ID hkcpebjpidlbpammcbpepkgmldcpiehd
URL Chính Thức https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd
Mô tả This extension notifies when you are called in a chat.
Kích Thước Tệp 107 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2016-07-09
Ngày Phát Hành 2016-07-09
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}