Catalyst Connect
This extension tracks contact id from zoho and shows chat box with the contact.
ما هو Catalyst Connect؟
Catalyst Connect هو إضافة Chrome تم تطويرها بواسطة https://catalystconnect.com، والميزة الرئيسية لها هي "This extension tracks contact id from zoho and shows chat box with the contact.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Catalyst Connect
قم بتنزيل ملفات الامتداد Catalyst Connect بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Catalyst Connect |
ID | nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/catalyst-connect/nlpjmpjcnmkbkgjbejlgcnjdmgpdjomd |
الوصف | This extension tracks contact id from zoho and shows chat box with the contact. |
حجم الملف | 311 KB |
عدد التثبيتات | 144 |
النسخة الحالية | 5.2 |
آخر تحديث | 2020-03-13 |
تاريخ النشر | 2020-03-13 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | https://catalystconnect.com |
نوع الدفع | free |
موقع الإضافة | http://catalystconnect.com/sms |
عنوان صفحة المساعدة | http://catalystconnect.com/contact |
اللغات المدعومة | 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\/*" ] } |