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.”。

擴展截圖

screenshot

下載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 Avaya Click To Dial
ID jocgehpknbbpjlenfoobdlgpppacpfgk
官方網址 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'"
}