Meet Assistant

Meet Assistant

Meet assistant at your service

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Meet Assistant",
  "description": "Meet assistant at your service",
  "version": "1.0",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Meet Assistant",
    "default_icon": "icons/icon_meet-assistant.png"
  },
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "commands": {
    "toggleMic": {
      "suggested_key": {
        "default": "Ctrl+Shift+9",
        "mac": "Command+Shift+9"
      },
      "description": "Toggle Microphone",
      "global": true
    },
    "toggleCam": {
      "suggested_key": {
        "default": "Ctrl+Shift+0",
        "mac": "Command+Shift+0"
      },
      "description": "Toggle Camera",
      "global": true
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}