Catalyst Connect
This extension tracks contact id from zoho and shows chat box with the contact.
Wat is Catalyst Connect?
Catalyst Connect is een Chrome-extensie ontwikkeld door https://catalystconnect.com, en de belangrijkste functie is "This extension tracks contact id from zoho and shows chat box with the contact.".
Extensie Screenshots
Download het CRX-bestand van de extensie Catalyst Connect
Download Catalyst Connect-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Catalyst Connect |
ID | nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd |
Officiële URL | https://chromewebstore.google.com/detail/catalyst-connect/nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd |
Beschrijving | This extension tracks contact id from zoho and shows chat box with the contact. |
Bestandsgrootte | 311 KB |
Aantal Installaties | 144 |
Huidige Versie | 5.2 |
Laatst Bijgewerkt | 2020-03-13 |
Publicatiedatum | 2020-03-13 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | https://catalystconnect.com |
Betalingswijze | free |
Extensiewebsite | http://catalystconnect.com/sms |
Help Pagina-URL | http://catalystconnect.com/contact |
Ondersteunde Talen | 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\/*" ] } |