Catalyst Connect
This extension tracks contact id from zoho and shows chat box with the contact.
Catalyst Connect là gì?
Catalyst Connect là một tiện ích mở rộng Chrome được phát triển bởi https://catalystconnect.com, và tính năng chính của nó là "This extension tracks contact id from zoho and shows chat box with the contact.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Catalyst Connect
Tải xuống các tệp mở rộng Catalyst Connect dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Catalyst Connect |
ID | nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd |
URL Chính Thức | https://chromewebstore.google.com/detail/catalyst-connect/nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd |
Mô tả | This extension tracks contact id from zoho and shows chat box with the contact. |
Kích Thước Tệp | 311 KB |
Số Lần Cài Đặt | 144 |
Phiên Bản Hiện Tại | 5.2 |
Cập Nhật Lần Cuối | 2020-03-13 |
Ngày Phát Hành | 2020-03-13 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://catalystconnect.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://catalystconnect.com/sms |
URL Trang Trợ Giúp | http://catalystconnect.com/contact |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |