Google Meet Link Hider

Google Meet Link Hider

Hides title and URL of the Google Meet link from the browser, quite useful while streaming.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Meet Link Hider",
  "version": "1.0",
  "description": "Hides title and URL of the Google Meet link from the browser, quite useful while streaming.",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.meet.google.com/*",
        "*://meet.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "*://*.meet.google.com/*",
    "*://meet.google.com/*",
    "webNavigation",
    "activeTab"
  ],
  "icons": {
    "16": "images/icon128.png",
    "32": "images/icon128.png",
    "48": "images/icon128.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 2
}