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.
Cos'è Max Contact Agent Extension?
Max Contact Agent Extension è un'estensione di Chrome sviluppata da MaxContact, e la sua funzione principale è "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 dell'Estensione
Scarica il file CRX dell'estensione Max Contact Agent Extension
Scarica i file di estensione Max Contact Agent Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Plugin for Max Contact to allow the browser to be pulled into the agent view when a call is in queue.
Informazioni di Base sull'Estensione
Nome | Max Contact Agent Extension |
ID | cpabeedodjfmfcjjpcephhpigamahmdm |
URL Ufficiale | https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm |
Descrizione | 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. |
Dimensione del File | 11.3 KB |
Conteggio Installazioni | 602 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-03-04 |
Data di Pubblicazione | 2020-03-04 |
Sviluppatore | MaxContact |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.maxcontact.com/privacy-policy |
Lingue Supportate | 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" ] } |