Catalyst Connect

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

Was ist Catalyst Connect?

Catalyst Connect ist eine Chrome-Erweiterung, die von https://catalystconnect.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension tracks contact id from zoho and shows chat box with the contact.".

Erweiterungsscreenshots

screenshot

Catalyst Connect-Erweiterungs-CRX-Datei herunterladen

Laden Sie Catalyst Connect-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Catalyst Connect Catalyst Connect
ID nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd
Offizielle URL https://chromewebstore.google.com/detail/catalyst-connect/nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd
Beschreibung This extension tracks contact id from zoho and shows chat box with the contact.
Dateigröße 311 KB
Installationsanzahl 144
Aktuelle Version 5.2
Letztes Update 2020-03-13
Veröffentlichungsdatum 2020-03-13
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler https://catalystconnect.com
Zahlungsart free
Erweiterungswebsite http://catalystconnect.com/sms
Hilfeseite URL http://catalystconnect.com/contact
Unterstützte Sprachen 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\/*"
    ]
}