Google Meet Bomb Guard

Google Meet Bomb Guard

For Organizations using Google Meet to block unwanted invitation requests from outside organizations/generic gmail accounts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google Meet Bomb Guard",
  "description": "For Organizations using Google Meet to block unwanted invitation requests from outside organizations/generic gmail accounts",
  "version": "2020.0.1",
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/invitationDialogHider.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Google Meet Organization Blocker",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "*://meet.google.com/*",
    "*://www.gstatic.com/meet/sounds/*",
    "webRequest",
    "webRequestBlocking"
  ]
}