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.
¿Qué es Avaya Click To Dial?
Avaya Click To Dial es una extensión de Chrome desarrollada por Avaya, y su función principal es "An extension for highlighting phone numbers on web page and initiating a call on Avaya one-X Agent after phone number is clicked.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Avaya Click To Dial
Descarga archivos de extensión Avaya Click To Dial en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Avaya Click To Dial |
ID | jocgehpknbbpjlenfoobdlgpppacpfgk |
URL Oficial | https://chromewebstore.google.com/detail/avaya-click-to-dial/jocgehpknbbpjlenfoobdlgpppacpfgk |
Descripción | An extension for highlighting phone numbers on web page and initiating a call on Avaya one-X Agent after phone number is clicked. |
Tamaño del Archivo | 62.7 KB |
Cantidad de Instalaciones | 24,747 |
Versión Actual | 1.5 |
Última Actualización | 2021-09-09 |
Fecha de Publicación | 2019-11-27 |
Calificación | 2.00/5 Total de 4 Calificaciones |
Desarrollador | Avaya |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://www.avaya.com |
URL de la Página de Ayuda | https://support.avaya.com |
URL de la Página de Política de Privacidad | https://www.avaya.com/en/privacy/policy |
Idiomas Soportados | 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'" } |