Google Meet Push to Talk & More - Supermeet

Google Meet Push to Talk & More - Supermeet

Supercharge your Google Meet with push to talk, an emoji hotbar, leave verification, and more features!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Meet Push to Talk & More - Supermeet",
  "short_name": "Supermeet",
  "version": "1.2",
  "manifest_version": 2,
  "description": "Supercharge your Google Meet with push to talk, an emoji hotbar, leave verification, and more features!",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "browser_action": {
    "default_popup": "src/browser_action/browser_action.html",
    "default_icon": "icons/128.png",
    "default_title": "Google Meet Push to Talk & More - Supermeet"
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "*://meet.google.com/*"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "js/jquery.min.js",
      "src/bg/background.js"
    ]
  },
  "web_accessible_resources": [
    "icons/*"
  ]
}