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.
¿Qué es Max Contact Agent Extension?
Max Contact Agent Extension es una extensión de Chrome desarrollada por MaxContact, y su función principal es "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.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Max Contact Agent Extension
Descarga archivos de extensión Max Contact Agent Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Plugin for Max Contact to allow the browser to be pulled into the agent view when a call is in queue.
Información Básica de la Extensión
Nombre | Max Contact Agent Extension |
ID | cpabeedodjfmfcjjpcephhpigamahmdm |
URL Oficial | https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm |
Descripción | 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. |
Tamaño del Archivo | 11.3 KB |
Cantidad de Instalaciones | 602 |
Versión Actual | 1.0 |
Última Actualización | 2020-03-04 |
Fecha de Publicación | 2020-03-04 |
Desarrollador | MaxContact |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://www.maxcontact.com/privacy-policy |
Idiomas Soportados | 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" ] } |