Max Contact Agent Extension
Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue.
ما هو Max Contact Agent Extension؟
Max Contact Agent Extension هو إضافة Chrome تم تطويرها بواسطة MaxContact، والميزة الرئيسية لها هي "Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Max Contact Agent Extension
قم بتنزيل ملفات الامتداد Max Contact Agent Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Plugin for Max Contact to allow the browser to be pulled into the agent view when a call is in queue.
معلومات أساسية عن التمديد
الاسم | Max Contact Agent Extension |
ID | cpabeedodjfmfcjjpcephhpigamahmdm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm |
الوصف | Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue. |
حجم الملف | 11.3 KB |
عدد التثبيتات | 602 |
النسخة الحالية | 1.0 |
آخر تحديث | 2020-03-04 |
تاريخ النشر | 2020-03-04 |
المطور | MaxContact |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة سياسة الخصوصية | https://www.maxcontact.com/privacy-policy |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Max Contact Agent Extension", "description": "Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue.", "version": "1.0", "browser_action": { "default_title": "Max Contact Agent Extension", "default_icon": "icon.png" }, "externally_connectable": { "matches": [ "*:\/\/*.maxcontact.com\/*" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.maxcontact.com\/*", "*:\/\/localhost\/*" ], "js": [ "contentScript.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "storage", "declarativeContent", "webNavigation", "notifications", "tabs" ] } |