Catalyst Connect

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

¿Qué es Catalyst Connect?

Catalyst Connect es una extensión de Chrome desarrollada por https://catalystconnect.com, y su función principal es "This extension tracks contact id from zoho and shows chat box with the contact.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Catalyst Connect

Descarga archivos de extensión Catalyst Connect en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Catalyst Connect Catalyst Connect
ID nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd
URL Oficial https://chromewebstore.google.com/detail/catalyst-connect/nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd
Descripción This extension tracks contact id from zoho and shows chat box with the contact.
Tamaño del Archivo 311 KB
Cantidad de Instalaciones 144
Versión Actual 5.2
Última Actualización 2020-03-13
Fecha de Publicación 2020-03-13
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://catalystconnect.com
Tipo de Pago free
Sitio Web de la Extensión http://catalystconnect.com/sms
URL de la Página de Ayuda http://catalystconnect.com/contact
Idiomas Soportados 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\/*"
    ]
}