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.
Was ist Max Contact Agent Extension?
Max Contact Agent Extension ist eine Chrome-Erweiterung, die von MaxContact entwickelt wurde, und ihr Hauptmerkmal ist "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.".
Erweiterungsscreenshots
Max Contact Agent Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie Max Contact Agent Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Plugin for Max Contact to allow the browser to be pulled into the agent view when a call is in queue.
Grundlegende Informationen zur Erweiterung
Name | Max Contact Agent Extension |
ID | cpabeedodjfmfcjjpcephhpigamahmdm |
Offizielle URL | https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm |
Beschreibung | 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. |
Dateigröße | 11.3 KB |
Installationsanzahl | 602 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-03-04 |
Veröffentlichungsdatum | 2020-03-04 |
Entwickler | MaxContact |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://www.maxcontact.com/privacy-policy |
Unterstützte Sprachen | 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" ] } |