Catalyst Connect

This extension tracks contact id from zoho and shows chat box with the contact.

什么是Catalyst Connect?

Catalyst Connect是由https://catalystconnect.com开发的Chrome扩展程序,该扩展的主要功能是“This extension tracks contact id from zoho and shows chat box with the contact.”。

扩展截图

screenshot

下载Catalyst Connect扩展crx文件

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

扩展使用说明

                        Catalyst Connect SMS is an integrated text message service for Zoho CRM. Users will be able to text CRM leads and contacts through the Chrome Extension. All texts will be logged in Zoho through a custom Module so users can reference back to conversations or configure workflow rules to be triggered based on responses.                    

扩展基本信息

名称 Catalyst Connect Catalyst Connect
ID nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd
官方URL https://chromewebstore.google.com/detail/catalyst-connect/nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd
简介 This extension tracks contact id from zoho and shows chat box with the contact.
文件大小 311 KB
安装次数 144
当前版本 5.2
更新时间 2020-03-13
上架时间 2020-03-13
评分 5.00/5 共3次评分
开发者 https://catalystconnect.com
付费类型 free
扩展官网 http://catalystconnect.com/sms
帮助页面URL http://catalystconnect.com/contact
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Catalyst Connect",
    "description": "This extension tracks contact id from zoho and shows chat box with the contact.",
    "version": "5.2",
    "icons": {
        "128": "include\/images\/icon128.png",
        "48": "include\/images\/icon48.png",
        "16": "include\/images\/icon16.png"
    },
    "browser_action": {
        "default_icon": "include\/images\/icon16.png",
        "default_popup": "popup.html",
        "default_title": "Catalyst Connect"
    },
    "background": {
        "scripts": [
            "include\/jquery-3.1.0.min.js",
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/crm.zoho.com\/*"
            ],
            "js": [
                "content.js",
                "include\/jquery-3.1.0.min.js",
                "twilio.min.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/crm.zoho.com\/*",
        "https:\/\/my.catalystconnect.com\/*"
    ]
}