Super Meet Mute

Super Meet Mute

Fast & global muting/unmuting for Google Meet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Super Meet Mute",
  "short_name": "SuperMeetMute",
  "author": "Adrian Palumbo, from Matt Simonis",
  "version": "1.1.0",
  "manifest_version": 2,
  "description": "Fast & global muting/unmuting for Google Meet.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "js/meetmute.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Disconnected"
  },
  "permissions": [
    "https://meet.google.com/*"
  ],
  "commands": {
    "toggle_mute": {
      "description": "Toggle Mute",
      "suggested_key": {
        "default": "Ctrl+Shift+K"
      },
      "global": true
    },
    "mute": {
      "description": "Mute",
      "suggested_key": {
        "default": "Ctrl+Shift+M"
      },
      "global": true
    },
    "unmute": {
      "description": "Unmute",
      "suggested_key": {
        "default": "Ctrl+Shift+B"
      },
      "global": true
    }
  }
}