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