TFS Chat Notifier

This extension notifies when you are called in a chat.

TFS Chat Notifier क्या है?

TFS Chat Notifier Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension notifies when you are called in a chat."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TFS Chat Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम TFS Chat Notifier TFS Chat Notifier
ID hkcpebjpidlbpammcbpepkgmldcpiehd
आधिकारिक URL https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd
विवरण This extension notifies when you are called in a chat.
फ़ाइल का आकार 107 KB
स्थापना संख्या 14
वर्तमान संस्करण 1.2
अंतिम अपडेट 2016-07-09
प्रकाशन तिथि 2016-07-09
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Unknown
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
}