Max Contact Agent Extension

Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue.

Max Contact Agent Extensionคืออะไร?

Max Contact Agent Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MaxContact และคุณลักษณะหลักของมันคือ "Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Max Contact Agent Extension

ดาวน์โหลดไฟล์ส่วนขยาย Max Contact Agent Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Plugin for Max Contact to allow the browser to be pulled into the agent view when a call is in queue.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Max Contact Agent Extension Max Contact Agent Extension
ID cpabeedodjfmfcjjpcephhpigamahmdm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm
คำอธิบาย Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue.
ขนาดไฟล์ 11.3 KB
จำนวนการติดตั้ง 602
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-03-04
วันที่เผยแพร่ 2020-03-04
ผู้พัฒนา MaxContact
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.maxcontact.com/privacy-policy
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Max Contact Agent Extension",
    "description": "Forces the browser to the front of the screen when the user is in a Not Ready or Dispositioning status and there is a call in queue.",
    "version": "1.0",
    "browser_action": {
        "default_title": "Max Contact Agent Extension",
        "default_icon": "icon.png"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.maxcontact.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.maxcontact.com\/*",
                "*:\/\/localhost\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent",
        "webNavigation",
        "notifications",
        "tabs"
    ]
}