Trove - ChatGPT for B2B sales teams
Write personalized first lines at a click of a button
什麼是Trove - ChatGPT for B2B sales teams?
Trove - ChatGPT for B2B sales teams是由www.gettrove.co開發的Chrome擴展程式,該擴展的主要功能是“Write personalized first lines at a click of a button”。
擴展截圖
下載Trove - ChatGPT for B2B sales teams擴展crx文件
下載Trove - ChatGPT for B2B sales teams擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Trove email assistant utilizes AI to automatically generate highly-personalized outreach first lines for sales email based on real-time Internet data. All with just a click of a button. So that your sales team can focus on interacting with prospects and closing deals.
0.0.15 Updates:
* Improved subject line generation for Salesloft
Currently supported platforms:
* HubSpot
* Outreach.io
* Salesloft
Notes to reviewers:
* We've removed support and source code for mail.google.com. 擴展基本資訊
| 名稱 | |
| ID | dnajmejncbkigbngiehfnodkpbfbpgee |
| 官方網址 | https://chromewebstore.google.com/detail/trove-chatgpt-for-b2b-sal/dnajmejncbkigbngiehfnodkpbfbpgee |
| 簡介 | Write personalized first lines at a click of a button |
| 檔案大小 | 532 KB |
| 安裝次數 | 44 |
| 目前版本 | 0.0.15 |
| 更新時間 | 2023-05-18 |
| 上架時間 | 2023-01-15 |
| 評分 | 5.00/5 共 3 次評分 |
| 開發者 | www.gettrove.co |
| 電子郵箱 | [email protected] |
| 付費類型 | in_app |
| 擴展官網 | https://www.gettrove.co |
| 說明頁面URL | https://www.gettrove.co |
| 隱私政策頁面URL | http://email.gettrove.co/docs/privacy_policy |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Trove - ChatGPT for B2B sales teams",
"description": "Write personalized first lines at a click of a button",
"version": "0.0.15",
"content_scripts": [
{
"matches": [
"https:\/\/*.hubspot.com\/*"
],
"js": [
"hubspotContent.bundle.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/*.outreach.io\/*"
],
"js": [
"outreachContent.bundle.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
},
{
"matches": [
"https:\/\/*.salesloft.com\/*"
],
"js": [
"salesloftContent.bundle.js"
],
"css": [
"content.css"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.bundle.js"
},
"permissions": [
"cookies",
"storage"
],
"host_permissions": [
"*:\/\/*.gettrove.co\/"
],
"web_accessible_resources": [
{
"resources": [
"\/asset\/*",
"\/content.css"
],
"matches": [
"https:\/\/*.outreach.io\/*",
"https:\/\/*.hubspot.com\/*",
"https:\/\/*.salesloft.com\/*"
]
}
],
"action": {
"default_title": "Trove AI",
"default_popup": "popup.html"
},
"icons": {
"16": "asset\/icon16.png",
"32": "asset\/icon32.png",
"48": "asset\/icon48.png",
"128": "asset\/icon128.png"
},
"manifest_version": 3
} | |