Push To Talk For Google Meet

Push To Talk For Google Meet

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.1.1",
  "manifest_version": 2,
  "name": "Push To Talk For Google Meet",
  "description": "Hold <space> in Google Meet to talk instead of fumbling around trying to mute and unmute",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "ptt.bundle.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.bundle.js",
      "update-conf.js",
      "update.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_popup": "options.html"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "declarativeContent"
  ],
  "homepage_url": "https://www.w3technic.com/p/push-to-talk-for-google-meet.html"
}