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.
Co to jest Max Contact Agent Extension?
Max Contact Agent Extension to rozszerzenie Chrome opracowane przez MaxContact, a jego główną funkcją jest „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.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Max Contact Agent Extension
Pobierz pliki rozszerzeń Max Contact Agent Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Plugin for Max Contact to allow the browser to be pulled into the agent view when a call is in queue.
Podstawowe informacje o rozszerzeniu
Nazwa | Max Contact Agent Extension |
ID | cpabeedodjfmfcjjpcephhpigamahmdm |
Oficjalny URL | https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm |
Opis | 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. |
Rozmiar pliku | 11.3 KB |
Liczba instalacji | 602 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-03-04 |
Data Publikacji | 2020-03-04 |
Deweloper | MaxContact |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://www.maxcontact.com/privacy-policy |
Obsługiwane Języki | 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" ] } |