Deny Google Meet Join Requests

Deny Google Meet Join Requests

Denys all Google Meet join requests

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Deny Google Meet Join Requests",
  "version": "1.4",
  "description": "Denys all Google Meet join requests",
  "permissions": [
    "declarativeContent",
    "activeTab",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "*://www.gstatic.com/meet/sounds/knock_*",
    "*://www.gstatic.com/meet/sounds/join_call_*"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "script.js"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    }
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2
}