Easy Mute for Google Meet

Easy Mute for Google Meet

A simple extension for mute/unmute Google Meet calls from browser icon. Including options to by default turn microphone/camera off.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "version": "1.7.4",
  "author": "010 Pixel",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://meet.google.com/**-**-**"
  ],
  "externally_connectable": {
    "matches": [
      "https://payment.010pixel.com/*"
    ]
  },
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png"
    },
    "default_title": "__MSG_appBrowserActionDefaultTitle__"
  },
  "options_ui": {
    "page": "subscriptions/index.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://meet.google.com/**-**-**"
      ],
      "js": [
        "js/_myapp.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "19": "images/icon19.png",
    "24": "images/icon24.png",
    "32": "images/icon32.png",
    "38": "images/icon38.png",
    "48": "images/icon48.png",
    "64": "images/icon64.png",
    "96": "images/icon96.png",
    "128": "images/icon128.png"
  }
}