Google Meet Microphone

Google Meet Microphone

Google Meet Microphone ON/OFF

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Meet Microphone",
  "version": "2.0.0.0",
  "author": "Genius Lynx",
  "description": "Google Meet Microphone ON/OFF",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Google Meet Microphone"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "https://meet.google.com/*",
    "activeTab"
  ],
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "manifest_version": 2
}