Google Meet Volume Control

Google Meet Volume Control

Allows adjustment of volume on Google Meet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_specific_settings": {
    "gecko": {
      "id": "google-meet-volume-control@azimjaved",
      "strict_min_version": "42.0"
    }
  },
  "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"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "views/icon/icon.png",
    "default_title": "Google Meet Volume Control",
    "default_popup": "views/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "meet.js"
      ]
    }
  ]
}