Meet Chat Notifier

Meet Chat Notifier

Meet Chat Notifier

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "0.0.8",
  "name": "Meet Chat Notifier",
  "description": "Meet Chat Notifier",
  "author": "João Vitor da Costa Andrade",
  "permissions": [
    "notifications"
  ],
  "icons": {
    "16": "icon16.png",
    "24": "icon24.png",
    "36": "icon36.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "15": "icon16.png",
      "24": "icon24.png",
      "36": "icon36.png",
      "48": "icon48.png"
    },
    "default_title": "Meet Chat Notifier",
    "default_popup": "index.html"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "content_new_layout.js",
        "initializer.js"
      ]
    }
  ]
}