MuteDeck

MuteDeck

Control Google Meet, StreamYard, Zoom, and Microsoft Teams using MuteDeck. Get the MuteDeck app from https://mutedeck.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MuteDeck",
  "version": "3.0",
  "description": "Control Google Meet, StreamYard, Zoom, and Microsoft Teams using MuteDeck. Get the MuteDeck app from https://mutedeck.com",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "host_permissions": [
    "https://meet.google.com/*",
    "https://app.zoom.us/*",
    "https://teams.microsoft.com/*",
    "https://streamyard.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*",
        "https://app.zoom.us/*",
        "https://teams.microsoft.com/*",
        "https://streamyard.com/*"
      ],
      "js": [
        "observers/googleMeetObserver.js",
        "observers/zoomObserver.js",
        "observers/teamsObserver.js",
        "observers/streamyardObserver.js",
        "contentScript.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "permissions": [
      "tabs"
    ],
    "service_worker": "background/service-worker.js"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "action": {
    "default_icon": {
      "16": "images/logo-16.png",
      "32": "images/logo-32.png",
      "48": "images/logo-48.png",
      "128": "images/logo-128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  }
}