TFS Chat Notifier

This extension notifies when you are called in a chat.

Apa itu TFS Chat Notifier?

TFS Chat Notifier adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension notifies when you are called in a chat.".

Unduh Berkas CRX Ekstensi TFS Chat Notifier

Unduh file ekstensi TFS Chat Notifier dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama TFS Chat Notifier TFS Chat Notifier
ID hkcpebjpidlbpammcbpepkgmldcpiehd
URL Resmi https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd
Deskripsi This extension notifies when you are called in a chat.
Ukuran File 107 KB
Jumlah Instalasi 14
Versi Saat Ini 1.2
Terakhir Diperbarui 2016-07-09
Tanggal Publikasi 2016-07-09
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Bahasa yang Didukung 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"
}