Customer Meetings

Customer Meetings

Add video meeting rooms to your Google Calendar events, record the meetings and try cobrowsing sessions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Customer Meetings",
  "author": "Vectera",
  "version": "2.4.0",
  "manifest_version": 2,
  "minimum_chrome_version": "54",
  "description": "Add video meeting rooms to your Google Calendar events, record the meetings and try cobrowsing sessions.",
  "homepage_url": "https://www.vectera.com/",
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content-script.js"
      ]
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "desktopCapture",
    "clipboardRead",
    "unlimitedStorage",
    "<all_urls>"
  ],
  "optional_permissions": [
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "icon-16.png"
  ],
  "incognito": "split"
}