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
Eメール [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"
}