Google Meet Volume Control

Google Meet Volume Control

Client side volume control for Google Meet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Meet Volume Control",
  "description": "Client side volume control for Google Meet",
  "version": "1.2.0",
  "short_name": "Meet Volume",
  "manifest_version": 3,
  "action": {
    "default_popup": "src/popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "src/js/meet.js"
      ]
    }
  ],
  "background": {
    "service_worker": "src/js/background.js"
  },
  "permissions": [
    "storage",
    "background",
    "declarativeContent"
  ]
}