Google Meet Volume Control

Google Meet Volume Control

Allows adjustment of Google Meet volume

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "manifest_version": 2,
  "name": "Google Meet Volume Control",
  "short_name": "Meet Volume",
  "description": "Allows adjustment of Google Meet volume",
  "version": "1.1.1",
  "permissions": [
    "storage",
    "background",
    "declarativeContent"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_title": "Google Classroom User Redirect",
    "default_popup": "views/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "meet.js"
      ]
    }
  ]
}