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.
Hvad er Avaya Click To Dial?
Avaya Click To Dial er en Chrome-udvidelse udviklet af Avaya, og dens hovedfunktion er "An extension for highlighting phone numbers on web page and initiating a call on Avaya one-X Agent after phone number is clicked.".
Udvidelsesskærmbilleder
Download Avaya Click To Dial-udvidelses-CRX-fil
Download Avaya Click To Dial-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Avaya Click To Dial |
ID | jocgehpknbbpjlenfoobdlgpppacpfgk |
Officiel URL | https://chromewebstore.google.com/detail/avaya-click-to-dial/jocgehpknbbpjlenfoobdlgpppacpfgk |
Beskrivelse | An extension for highlighting phone numbers on web page and initiating a call on Avaya one-X Agent after phone number is clicked. |
Filstørrelse | 62.7 KB |
Antal Installationer | 24,747 |
Nuværende Version | 1.5 |
Senest Opdateret | 2021-09-09 |
Udgivelsesdato | 2019-11-27 |
Bedømmelse | 2.00/5 Samlet 4 Bedømmelser |
Udvikler | Avaya |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://www.avaya.com |
Hjælpeside-URL | https://support.avaya.com |
URL til Fortrolighedspolitik Side | https://www.avaya.com/en/privacy/policy |
Understøttede Sprog | 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'" } |