RingCentral Huddle

RingCentral Huddle

Start a quick huddle with teammates who are viewing the same page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "RingCentral Huddle",
  "description": "Start a quick huddle with teammates who are viewing the same page.",
  "version": "0.0.4",
  "icons": {
    "16": "/images/logo16.png",
    "32": "/images/logo32.png",
    "48": "/images/logo48.png",
    "128": "/images/logo128.png"
  },
  "permissions": [
    "storage",
    "identity"
  ],
  "action": {
    "default_icon": {
      "16": "/images/logo16.png",
      "32": "/images/logo32.png",
      "48": "/images/logo48.png",
      "128": "/images/logo128.png"
    }
  },
  "host_permissions": [
    "https://www.figma.com/*",
    "https://docs.google.com/*",
    "https://www.googleapis.com/*"
  ],
  "background": {
    "service_worker": "sw.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js",
        "ringcentral.js"
      ],
      "matches": [
        "https://www.figma.com/*",
        "https://docs.google.com/*"
      ],
      "all_frames": false
    }
  ]
}