Zingtree Decision Trees

Launch Zingtree interactive decision trees from Chrome

Zingtree Decision Trees là gì?

Zingtree Decision Trees là một tiện ích mở rộng Chrome được phát triển bởi integrations, và tính năng chính của nó là "Launch Zingtree interactive decision trees from Chrome".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Zingtree Decision Trees

Tải xuống các tệp mở rộng Zingtree Decision Trees dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Zingtree Decision Trees Zingtree Decision Trees
ID hicgnaagoiaelmnafpoppehkfhadmpfd
URL Chính Thức https://chromewebstore.google.com/detail/zingtree-decision-trees/hicgnaagoiaelmnafpoppehkfhadmpfd
Mô tả Launch Zingtree interactive decision trees from Chrome
Kích Thước Tệp 22 KB
Số Lần Cài Đặt 130
Phiên Bản Hiện Tại 7.0
Cập Nhật Lần Cuối 2022-05-08
Ngày Phát Hành 2022-05-08
Nhà Phát Triển integrations
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://zingtree.com/
URL Trang Trợ Giúp https://help.zingtree.com/
URL Trang Chính Sách Bảo Mật https://zingtree.com/en/gdpr
Ngôn Ngữ Được Hỗ Trợ 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"
}