Whereby

Whereby

Schedule and record video meetings with the Whereby Chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Whereby",
  "version": "2.4.42",
  "description": "Schedule and record video meetings with the Whereby Chrome extension",
  "permissions": [
    "desktopCapture",
    "storage",
    "*://*.whereby.com/*",
    "https://api.whereby.dev/*"
  ],
  "optional_permissions": [
    "https://calendar.google.com/*",
    "system.cpu",
    "system.memory"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.whereby.com/*"
      ],
      "js": [
        "whereby.inject.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "assets/whereby-logo/icon-16.png",
    "48": "assets/whereby-logo/icon-48.png",
    "64": "assets/whereby-logo/icon-64.png",
    "128": "assets/whereby-logo/icon-128.png"
  },
  "background": {
    "scripts": [
      "background-script.bundle.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "index.html"
  },
  "web_accessible_resources": [
    "index.html",
    "assets/*.png"
  ],
  "manifest_version": 2
}