TFS Chat Notifier
This extension notifies when you are called in a chat.
TFS Chat Notifierคืออะไร?
TFS Chat Notifier เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "This extension notifies when you are called in a chat."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TFS Chat Notifier
ดาวน์โหลดไฟล์ส่วนขยาย TFS Chat Notifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Monitors a TFS Room chat page and alerts you of new messages or when you were called.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" } |