CallGear Hubspot integration

CallGear Hubspot integration

Added click to call and notifications to Hubspot

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CallGear Hubspot integration",
  "version": "0.23",
  "description": "Added click to call and notifications to Hubspot",
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://*.hubspot.com/*",
    "https://hubspot.callgear.com/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.hubspot.com/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "manifest_version": 3
}