3CX Teams Presence
Sets Presence State in MS Teams
ما هو 3CX Teams Presence؟
3CX Teams Presence هو إضافة Chrome تم تطويرها بواسطة https://www.t38printer.de، والميزة الرئيسية لها هي "Sets Presence State in MS Teams".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة 3CX Teams Presence
قم بتنزيل ملفات الامتداد 3CX Teams Presence بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Exteneds 3CX Pbx to synchronize presence state with MS Teams معلومات أساسية عن التمديد
| الاسم | |
| ID | mdbamfolhkbhebabgfbcnphffgfkpmjn |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/3cx-teams-presence/mdbamfolhkbhebabgfbcnphffgfkpmjn |
| الوصف | Sets Presence State in MS Teams |
| حجم الملف | 16.07 KB |
| عدد التثبيتات | 58 |
| النسخة الحالية | 0.0.1.0 |
| آخر تحديث | 2022-05-31 |
| تاريخ النشر | 2022-04-20 |
| المطور | https://www.t38printer.de |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | https://www.t38printer.de |
| عنوان صفحة المساعدة | https://www.t38printer.de |
| عنوان صفحة سياسة الخصوصية | https://mail2fax.t38printer.de/security.html |
| اللغات المدعومة | de |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "3CX Teams Presence",
"description": "Sets Presence State in MS Teams",
"version": "0.0.1.0",
"options_ui": {
"page": "options.html"
},
"permissions": [
"storage",
"tabs"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/teams.microsoft.com\/*",
"https:\/\/teams.live.com\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "images\/icons\/16.png",
"19": "images\/icons\/19.png",
"38": "images\/icons\/38.png",
"64": "images\/icons\/64.png",
"128": "images\/icons\/128.png"
}
} | |