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 là gì?
Max Contact Agent Extension là một tiện ích mở rộng Chrome được phát triển bởi MaxContact, và tính năng chính của nó là "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.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Max Contact Agent Extension
Tải xuống các tệp mở rộng Max Contact Agent Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Plugin for Max Contact to allow the browser to be pulled into the agent view when a call is in queue.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Max Contact Agent Extension |
ID | cpabeedodjfmfcjjpcephhpigamahmdm |
URL Chính Thức | https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm |
Mô tả | 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. |
Kích Thước Tệp | 11.3 KB |
Số Lần Cài Đặt | 602 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-03-04 |
Ngày Phát Hành | 2020-03-04 |
Nhà Phát Triển | MaxContact |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://www.maxcontact.com/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |