TFS 2015 Team Room Notifications

This extension shows a desktop notification when a message is received in tfs team room

Τι είναι το TFS 2015 Team Room Notifications;

Το TFS 2015 Team Room Notifications είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον a.granpre, και η κύρια λειτουργία του είναι "This extension shows a desktop notification when a message is received in tfs team room".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης TFS 2015 Team Room Notifications

Λήψη αρχείων επέκτασης TFS 2015 Team Room Notifications σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Shows notification when a team room chat message is posted in a team room that you opened.

v1.39 removed hardcoded DefaultCollection from code
v1.40 cleanup fix syntax errors                    

Βασικές Πληροφορίες Επέκτασης

Όνομα TFS 2015 Team Room Notifications TFS 2015 Team Room Notifications
ID llohcidbibnpeddcppapgkpnhhecnlfn
Επίσημο URL https://chromewebstore.google.com/detail/tfs-2015-team-room-notifi/llohcidbibnpeddcppapgkpnhhecnlfn
Περιγραφή This extension shows a desktop notification when a message is received in tfs team room
Μέγεθος Αρχείου 40.18 KB
Αριθμός Εγκαταστάσεων 29
Τρέχουσα Έκδοση 1.40
Τελευταία Ενημέρωση 2016-11-04
Ημερομηνία Δημοσίευσης 2016-11-04
Αξιολόγηση 1.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής a.granpre
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TFS 2015 Team Room Notifications",
    "description": "This extension shows a desktop notification when a message is received in tfs team room",
    "version": "1.40",
    "author": "Antoine Granpré Molière",
    "browser_action": {
        "default_icon": "favicon.ico"
    },
    "permissions": [
        "activeTab",
        "notifications",
        "tabs",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "chatNotifier.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}