MuteMe Web Extension

MuteMe Web Extension

Take control of web-based video calls with MuteMe

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "background": {
    "service_worker": "./background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "alarms",
    "storage"
  ],
  "host_permissions": [
    "https://meet.google.com/*",
    "https://teams.live.com/*",
    "http://localhost/*"
  ],
  "icons": {
    "16": "/images/muteme16.png",
    "32": "/images/muteme32.png",
    "48": "/images/muteme48.png",
    "128": "/images/muteme128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "googleMeet-control.js"
      ]
    },
    {
      "matches": [
        "https://teams.live.com/*"
      ],
      "js": [
        "teams-control.js"
      ]
    }
  ],
  "name": "MuteMe Web Extension",
  "description": "Take control of web-based video calls with MuteMe",
  "version": "1.5.0"
}