Google Meet Push-To-Talk

Google Meet Push-To-Talk

Hold <space> in Google Meet to talk instead of fumbling around trying to mute and unmute

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "15.0.3",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "manifest_version": 3,
  "name": "Google Meet Push-To-Talk",
  "description": "Hold <space> in Google Meet to talk instead of fumbling around trying to mute and unmute",
  "icons": {
    "16": "icons/monkey16.png",
    "48": "icons/monkey48.png",
    "128": "icons/monkey128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/recimage.png",
        "images/record.png",
        "images/howto.jpg"
      ],
      "matches": [
        "https://*.zoom.us/*",
        "https://*.zoomgov.com/*",
        "https://meet.google.com/*",
        "https://*.gotomeet.me/*",
        "https://*.gotowebinar.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.zoom.us/*",
        "https://zoomgov.com/*",
        "https://meet.google.com/*",
        "https://*.gotomeet.me/*",
        "https://*.gotowebinar.com/*"
      ],
      "js": [
        "ptt.bundle.js"
      ],
      "css": [
        "./ptt.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "commands": {
    "toggle-meeting-mute": {
      "suggested_key": {
        "default": "Ctrl+Space",
        "mac": "MacCtrl+Space"
      },
      "description": "Globally TOGGLE mute in Google Meet"
    }
  },
  "action": {
    "default_popup": "options.html"
  },
  "options_page": "options.html",
  "permissions": [
    "declarativeContent",
    "storage",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}