TFS Chat Notifier

This extension notifies when you are called in a chat.

Qu'est-ce que TFS Chat Notifier ?

TFS Chat Notifier est une extension Chrome développée par Unknown, et sa fonction principale est "This extension notifies when you are called in a chat.".

Télécharger le fichier CRX de l'extension TFS Chat Notifier

Téléchargez les fichiers d'extension TFS Chat Notifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom TFS Chat Notifier TFS Chat Notifier
ID hkcpebjpidlbpammcbpepkgmldcpiehd
URL Officiel https://chromewebstore.google.com/detail/tfs-chat-notifier/hkcpebjpidlbpammcbpepkgmldcpiehd
Description This extension notifies when you are called in a chat.
Taille du Fichier 107 KB
Nombre d'Installations 14
Version Actuelle 1.2
Dernière Mise à Jour 2016-07-09
Date de Publication 2016-07-09
Évaluation 5.00/5 Total 1 Évaluations
Développeur Unknown
Type de Paiement free
Langues Prises en Charge 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"
}