Google Meet Global Shortcuts

Google Meet Global Shortcuts

Added global shortcuts to google meet, to mute, unmute & toggle the microphone

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.0.3",
  "description": "__MSG_extDescription__",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "toggleMicrophone": {
      "description": "__MSG_toggleMicrophone__",
      "suggested_key": {
        "default": "Ctrl+Shift+K"
      },
      "global": true
    },
    "muteMicrophone": {
      "description": "__MSG_muteMicrophone__",
      "global": true
    },
    "unmuteMicrophone": {
      "description": "__MSG_unmuteMicrophone__",
      "global": true
    }
  },
  "browser_action": {
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/default/16.png",
      "32": "icons/default/32.png"
    }
  },
  "icons": {
    "16": "icons/default/16.png",
    "32": "icons/default/32.png"
  },
  "default_locale": "en",
  "permissions": [
    "https://meet.google.com/*",
    "tabs"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content_script.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ],
      "run_at": "document_idle"
    }
  ]
}