NotifyMe

NotifyMe

NotifyMe alerts you when your name or keyword is said in a Google Meet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NotifyMe",
  "description": "NotifyMe alerts you when your name or keyword is said in a Google Meet.",
  "version": "1.1.10",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "*://*.meet.google.com/*"
      ],
      "js": [
        "jQuery-3.5.1.js",
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "icons": {
    "128": "notifyme_icon.png"
  },
  "browser_action": {
    "default_title": "Check status.",
    "default_popup": "popup.html"
  }
}