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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Avaya และคุณลักษณะหลักของมันคือ "An extension for highlighting phone numbers on web page and initiating a call on Avaya one-X Agent after phone number is clicked."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Avaya Click To Dial

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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'"
}