Catalyst Connect

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

What is Catalyst Connect?

Catalyst Connect is a Chrome extension developed by https://catalystconnect.com, and its main feature is "This extension tracks contact id from zoho and shows chat box with the contact.".

Extension Screenshots

screenshot

Download Catalyst Connect Extension CRX File

Download Catalyst Connect extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Catalyst Connect Catalyst Connect
ID nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd
Official URL https://chromewebstore.google.com/detail/catalyst-connect/nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd
Description This extension tracks contact id from zoho and shows chat box with the contact.
File Size 311 KB
Installation Count 144
Current Version 5.2
Last Updated 2020-03-13
Publish Date 2020-03-13
Rating 5.00/5 Total 3 Ratings
Developer https://catalystconnect.com
Payment Type free
Extension Website http://catalystconnect.com/sms
Help Page URL http://catalystconnect.com/contact
Supported Languages 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\/*"
    ]
}