Zingtree Decision Trees

Launch Zingtree interactive decision trees from Chrome

Qu'est-ce que Zingtree Decision Trees ?

Zingtree Decision Trees est une extension Chrome développée par integrations, et sa fonction principale est "Launch Zingtree interactive decision trees from Chrome".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Zingtree Decision Trees

Téléchargez les fichiers d'extension Zingtree Decision Trees au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Launch Zingtree interactive decision trees from Chrome

The Zingtree Interactive Decision Tree extension for Chrome makes it easy to launch a decision tree from any CRM or Help Desk system. This is extremely useful for internal live support agents in contact centers or similar.

Not only can you give your agents a set of decision tree scripts to follow, but each instance of the script is tied to the active page. So if you have a support ticket or case open, then launch the decision tree, and then come back to that same case or ticket, relaunching the decision tree will resume at the same place previously, and also show the history of what transpired. We call this "Pause and Resume".

You'll need to create your own decision tree scripts to use this extension. Sign up for a free trial at https://zingtree.com                    

Informations de Base sur l'Extension

Nom Zingtree Decision Trees Zingtree Decision Trees
ID hicgnaagoiaelmnafpoppehkfhadmpfd
URL Officiel https://chromewebstore.google.com/detail/zingtree-decision-trees/hicgnaagoiaelmnafpoppehkfhadmpfd
Description Launch Zingtree interactive decision trees from Chrome
Taille du Fichier 22 KB
Nombre d'Installations 130
Version Actuelle 7.0
Dernière Mise à Jour 2022-05-08
Date de Publication 2022-05-08
Développeur integrations
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://zingtree.com/
URL de la Page d'Aide https://help.zingtree.com/
URL de la Page de Politique de Confidentialité https://zingtree.com/en/gdpr
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Zingtree Decision Trees",
    "short_name": "Zingtree",
    "description": "Launch Zingtree interactive decision trees from Chrome",
    "version": "7.0",
    "permissions": [
        "activeTab",
        "identity",
        "identity.email",
        "storage"
    ],
    "action": {
        "default_title": "Zingtree",
        "default_icon": "zingtree128x128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "zingtree128x128.png",
        "48": "zingtree128x128.png",
        "128": "zingtree128x128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "settings.html"
}