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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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'" } |