Trove - ChatGPT for B2B sales teams

Trove - ChatGPT for B2B sales teams

Write personalized first lines at a click of a button

Merlin
Additional files are visible only to premium users

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
}