Zingtree Decision Trees

Launch Zingtree interactive decision trees from Chrome

什么是Zingtree Decision Trees?

Zingtree Decision Trees是由integrations开发的Chrome扩展程序,该扩展的主要功能是“Launch Zingtree interactive decision trees from Chrome”。

扩展截图

screenshot

下载Zingtree Decision Trees扩展crx文件

下载Zingtree Decision Trees扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
}