Catalyst Connect
This extension tracks contact id from zoho and shows chat box with the contact.
Catalyst Connectとは何ですか?
Catalyst Connectはhttps://catalystconnect.comによって開発されたChromeの拡張機能で、その主な機能は「This extension tracks contact id from zoho and shows chat box with the contact.」です。
拡張機能のスクリーンショット
Catalyst Connect拡張機能のCRXファイルをダウンロード
Catalyst Connect拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
ヘルプページのURL | 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\/*" ] } |