Catalyst Connect

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

Co to jest Catalyst Connect?

Catalyst Connect to rozszerzenie Chrome opracowane przez https://catalystconnect.com, a jego główną funkcją jest „This extension tracks contact id from zoho and shows chat box with the contact.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Catalyst Connect

Pobierz pliki rozszerzeń Catalyst Connect w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Catalyst Connect Catalyst Connect
ID nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd
Oficjalny URL https://chromewebstore.google.com/detail/catalyst-connect/nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd
Opis This extension tracks contact id from zoho and shows chat box with the contact.
Rozmiar pliku 311 KB
Liczba instalacji 144
Aktualna Wersja 5.2
Ostatnia Aktualizacja 2020-03-13
Data Publikacji 2020-03-13
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper https://catalystconnect.com
Typ Płatności free
Strona Rozszerzenia http://catalystconnect.com/sms
Adres URL Strony Pomocy http://catalystconnect.com/contact
Obsługiwane Języki 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\/*"
    ]
}