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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
    }
}