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.
Hvad er Max Contact Agent Extension?
Max Contact Agent Extension er en Chrome-udvidelse udviklet af MaxContact, og dens hovedfunktion er "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.".
Udvidelsesskærmbilleder
Download Max Contact Agent Extension-udvidelses-CRX-fil
Download Max Contact Agent Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Plugin for Max Contact to allow the browser to be pulled into the agent view when a call is in queue.
Grundlæggende oplysninger om udvidelsen
Navn | Max Contact Agent Extension |
ID | cpabeedodjfmfcjjpcephhpigamahmdm |
Officiel URL | https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm |
Beskrivelse | 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. |
Filstørrelse | 11.3 KB |
Antal Installationer | 602 |
Nuværende Version | 1.0 |
Senest Opdateret | 2020-03-04 |
Udgivelsesdato | 2020-03-04 |
Udvikler | MaxContact |
[email protected] | |
Betalingsmetode | free |
URL til Fortrolighedspolitik Side | https://www.maxcontact.com/privacy-policy |
Understøttede Sprog | 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" ] } |