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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://support.avaya.com
عنوان صفحة سياسة الخصوصية 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'"
}