TFS Chat Notifier

This extension notifies when you are called in a chat.

Vad är TFS Chat Notifier?

TFS Chat Notifier är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "This extension notifies when you are called in a chat.".

Ladda ner TFS Chat Notifier-förlängningens CRX-fil

Ladda ner TFS Chat Notifier-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn TFS Chat Notifier TFS Chat Notifier
ID hkcpebjpidlbpammcbpepkgmldcpiehd
Officiell webbadress https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd
Beskrivning This extension notifies when you are called in a chat.
Filstorlek 107 KB
Antal Installationer 14
Aktuell Version 1.2
Senast Uppdaterad 2016-07-09
Publiceringsdatum 2016-07-09
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
}