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
公式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
Eメール [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'"
}