Catalyst Connect
This extension tracks contact id from zoho and shows chat box with the contact.
Qu'est-ce que Catalyst Connect ?
Catalyst Connect est une extension Chrome développée par https://catalystconnect.com, et sa fonction principale est "This extension tracks contact id from zoho and shows chat box with the contact.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Catalyst Connect
Téléchargez les fichiers d'extension Catalyst Connect au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Catalyst Connect |
ID | nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd |
URL Officiel | https://chromewebstore.google.com/detail/catalyst-connect/nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd |
Description | This extension tracks contact id from zoho and shows chat box with the contact. |
Taille du Fichier | 311 KB |
Nombre d'Installations | 144 |
Version Actuelle | 5.2 |
Dernière Mise à Jour | 2020-03-13 |
Date de Publication | 2020-03-13 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | https://catalystconnect.com |
Type de Paiement | free |
Site Web de l'Extension | http://catalystconnect.com/sms |
URL de la Page d'Aide | http://catalystconnect.com/contact |
Langues Prises en Charge | 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\/*" ] } |