Avaya Click To Dial
An extension for highlighting phone numbers on web page and initiating a call on Avaya one-X Agent after phone number is clicked.
Avaya Click To Dial là gì?
Avaya Click To Dial là một tiện ích mở rộng Chrome được phát triển bởi Avaya, và tính năng chính của nó là "An extension for highlighting phone numbers on web page and initiating a call on Avaya one-X Agent after phone number is clicked.".
Ả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 Avaya Click To Dial
Tải xuống các tệp mở rộng Avaya Click To Dial 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
This extension for Avaya One-X Agent application. The purpose of this extension is to allow a client to make a call using one-X Agent. This extension can be used to enable click to dial functionality in 3rd party application. The way this API works is that it makes the call the way one would make a call using the one-X Agent UI itself. Any Agent Preferences settings with regards to prompting a dialog to confirm (or correct) the phone number before dialing or auto-holding an existing call will be respected (preserved). Any errors in making the call will be reported via the one-X Agent UI.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Avaya Click To Dial |
ID | jocgehpknbbpjlenfoobdlgpppacpfgk |
URL Chính Thức | https://chromewebstore.google.com/detail/avaya-click-to-dial/jocgehpknbbpjlenfoobdlgpppacpfgk |
Mô tả | An extension for highlighting phone numbers on web page and initiating a call on Avaya one-X Agent after phone number is clicked. |
Kích Thước Tệp | 62.7 KB |
Số Lần Cài Đặt | 24,747 |
Phiên Bản Hiện Tại | 1.5 |
Cập Nhật Lần Cuối | 2021-09-09 |
Ngày Phát Hành | 2019-11-27 |
Đánh Giá | 2.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Avaya |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.avaya.com |
URL Trang Trợ Giúp | https://support.avaya.com |
URL Trang Chính Sách Bảo Mật | https://www.avaya.com/en/privacy/policy |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Avaya Click To Dial", "version": "1.5", "description": "An extension for highlighting phone numbers on web page and initiating a call on Avaya one-X Agent after phone number is clicked.", "background": { "page": "background\/background.html" }, "permissions": [ "nativeMessaging", "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "browser_action": { "default_title": "Avaya Click To Dial" }, "icons": { "48": "images\/icon48.png" }, "content_scripts": [ { "js": [ "common\/string.js", "common\/constants.js", "content\/contentScript.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "all_frames": true, "run_at": "document_end" } ], "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |