Meet Notificar

Meet Notificar

Be notified when someone sends you a message on google meet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Meet Notificar",
  "version": "1.0",
  "description": "Be notified when someone sends you a message on google meet.",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "meet.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "resources": [
        "bip.mp3"
      ]
    }
  ]
}