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.

Τι είναι το Max Contact Agent Extension;

Το Max Contact Agent Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον MaxContact, και η κύρια λειτουργία του είναι "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

Λήψη αρχείου CRX της επέκτασης Max Contact Agent Extension

Λήψη αρχείων επέκτασης Max Contact Agent Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Plugin for Max Contact to allow the browser to be pulled into the agent view when a call is in queue.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Max Contact Agent Extension Max Contact Agent Extension
ID cpabeedodjfmfcjjpcephhpigamahmdm
Επίσημο URL https://chromewebstore.google.com/detail/max-contact-agent-extensi/cpabeedodjfmfcjjpcephhpigamahmdm
Περιγραφή 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.
Μέγεθος Αρχείου 11.3 KB
Αριθμός Εγκαταστάσεων 602
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-03-04
Ημερομηνία Δημοσίευσης 2020-03-04
Προγραμματιστής MaxContact
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://www.maxcontact.com/privacy-policy
Υποστηριζόμενες Γλώσσες 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"
    ]
}