Trove - ChatGPT for B2B sales teams

Write personalized first lines at a click of a button

Cos'è Trove - ChatGPT for B2B sales teams?

Trove - ChatGPT for B2B sales teams è un'estensione di Chrome sviluppata da www.gettrove.co, e la sua funzione principale è "Write personalized first lines at a click of a button".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Trove - ChatGPT for B2B sales teams

Scarica i file di estensione Trove - ChatGPT for B2B sales teams in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Trove - ChatGPT for B2B sales teams Trove - ChatGPT for B2B sales teams
ID dnajmejncbkigbngiehfnodkpbfbpgee
URL Ufficiale https://chromewebstore.google.com/detail/trove-chatgpt-for-b2b-sal/dnajmejncbkigbngiehfnodkpbfbpgee
Descrizione Write personalized first lines at a click of a button
Dimensione del File 532 KB
Conteggio Installazioni 44
Versione Corrente 0.0.15
Ultimo Aggiornamento 2023-05-18
Data di Pubblicazione 2023-01-15
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore www.gettrove.co
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://www.gettrove.co
URL della Pagina di Aiuto https://www.gettrove.co
URL della Pagina della Politica sulla Privacy http://email.gettrove.co/docs/privacy_policy
Lingue Supportate 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
}