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?
Avaya Click To Dial是由Avaya开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件
下载Avaya Click To Dial扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Avaya Click To Dial |
ID | jocgehpknbbpjlenfoobdlgpppacpfgk |
官方URL | https://chromewebstore.google.com/detail/avaya-click-to-dial/jocgehpknbbpjlenfoobdlgpppacpfgk |
简介 | An extension for highlighting phone numbers on web page and initiating a call on Avaya one-X Agent after phone number is clicked. |
文件大小 | 62.7 KB |
安装次数 | 24,747 |
当前版本 | 1.5 |
更新时间 | 2021-09-09 |
上架时间 | 2019-11-27 |
评分 | 2.00/5 共4次评分 |
开发者 | Avaya |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://www.avaya.com |
帮助页面URL | https://support.avaya.com |
隐私政策页面URL | https://www.avaya.com/en/privacy/policy |
支持的语言 | 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'" } |