Zingtree Decision Trees

Launch Zingtree interactive decision trees from Chrome

Zingtree Decision Treesคืออะไร?

Zingtree Decision Trees เป็นส่วนขยายของ Chrome ที่พัฒนาโดย integrations และคุณลักษณะหลักของมันคือ "Launch Zingtree interactive decision trees from Chrome"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Zingtree Decision Trees

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}