RingCentral for HubSpot

RingCentral for HubSpot

RingCentral for HubSpot

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "24.1.31",
  "name": "RingCentral for HubSpot",
  "description": "RingCentral for HubSpot",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "background",
    "notifications",
    "storage",
    "system.display"
  ],
  "host_permissions": [
    "https://*.ringcentral.com/*",
    "https://*.ringcentral.biz/*"
  ],
  "action": {},
  "icons": {
    "16": "icon_16.png",
    "32": "icon_32.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "redirect.html",
        "client.html",
        "popup.html",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.hubspot.com/*"
      ],
      "js": [
        "./content.js"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}