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