Zingtree Decision Trees

Launch Zingtree interactive decision trees from Chrome

Zingtree Decision Trees क्या है?

Zingtree Decision Trees integrations द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Launch Zingtree interactive decision trees from Chrome"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Zingtree Decision Trees एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Zingtree Decision Trees Zingtree Decision Trees
ID hicgnaagoiaelmnafpoppehkfhadmpfd
आधिकारिक URL https://chromewebstore.google.com/detail/zingtree-decision-trees/hicgnaagoiaelmnafpoppehkfhadmpfd
विवरण Launch Zingtree interactive decision trees from Chrome
फ़ाइल का आकार 22 KB
स्थापना संख्या 130
वर्तमान संस्करण 7.0
अंतिम अपडेट 2022-05-08
प्रकाशन तिथि 2022-05-08
डेवलपर integrations
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://zingtree.com/
सहायता पृष्ठ URL https://help.zingtree.com/
गोपनीयता नीति पृष्ठ URL https://zingtree.com/en/gdpr
समर्थित भाषाएँ 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"
}