Totango Touchpoint Connect
Without leaving Gmail, users can search for accounts, select contacts, and automatically log the email as a touchpoint in Totango
什麼是Totango Touchpoint Connect?
Totango Touchpoint Connect是由Totango開發的Chrome擴展程式,該擴展的主要功能是“Without leaving Gmail, users can search for accounts, select contacts, and automatically log the email as a touchpoint in Totango”。
擴展截圖
下載Totango Touchpoint Connect擴展crx文件
下載Totango Touchpoint Connect擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Using Touchpoint Connect increases productivity and improves cross-functional visibility into customer communication by allowing users to:
- Expand a drawer UI that has a “log to timeline” checkbox
- Search for accounts
- Select accounts and associated contact
- Add selected accounts and contact information to the emails distribution list
- Record a copy of the email in the Totango platform for that account
To use Totango Touchpoint Connect, you need a valid Totango account. 擴展基本資訊
| 名稱 | |
| ID | omekflilffhmkkibiadbbhahdhmjdlkp |
| 官方網址 | https://chromewebstore.google.com/detail/totango-touchpoint-connec/omekflilffhmkkibiadbbhahdhmjdlkp |
| 簡介 | Without leaving Gmail, users can search for accounts, select contacts, and automatically log the email as a touchpoint in Totango |
| 檔案大小 | 1.71 MB |
| 安裝次數 | 443 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2023-12-13 |
| 上架時間 | 2023-10-15 |
| 評分 | 3.67/5 共 3 次評分 |
| 開發者 | Totango |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.totango.com/ |
| 隱私政策頁面URL | https://www.totango.com/privacy-policy |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Totango Touchpoint Connect",
"description": "Without leaving Gmail, users can search for accounts, select contacts, and automatically log the email as a touchpoint in Totango",
"version": "1.0.1",
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"64": "icons\/Totango_Logo_RGB_Icon_64px.png",
"128": "icons\/Totango_Logo_RGB_Icon_128px.png"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"scripting"
],
"host_permissions": [
"https:\/\/mail.google.com\/"
],
"manifest_version": 3
} | |