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.

Apa itu Max Contact Agent Extension?

Max Contact Agent Extension adalah ekstensi Chrome yang dikembangkan oleh MaxContact, dan fitur utamanya adalah "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 Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Max Contact Agent Extension

Unduh file ekstensi Max Contact Agent Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Max Contact Agent Extension Max Contact Agent Extension
ID cpabeedodjfmfcjjpcephhpigamahmdm
URL Resmi https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm
Deskripsi 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.
Ukuran File 11.3 KB
Jumlah Instalasi 602
Versi Saat Ini 1.0
Terakhir Diperbarui 2020-03-04
Tanggal Publikasi 2020-03-04
Pengembang MaxContact
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://www.maxcontact.com/privacy-policy
Bahasa yang Didukung 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"
    ]
}