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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension for highlighting phone numbers on web page and initiating a call on Avaya one-X Agent after phone number is clicked."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Avaya Click To Dial एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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'" } |