Google Meet - Jabra Call Control support

Google Meet - Jabra Call Control support

Adds Jabra call control support to Google Meet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Adds Jabra call control support to Google Meet",
  "version": "1.4.1",
  "manifest_version": 3,
  "name": "Google Meet - Jabra Call Control support",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_title": "Connect to Jabra device"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "hid_dialog.html",
        "content.styles.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}