Say My Name

Say My Name

Alerts you when someone mentions your name during online meetings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Say My Name",
  "version": "1.0",
  "default_locale": "en",
  "description": "Alerts you when someone mentions your name during online meetings.",
  "permissions": [
    "activeTab",
    "storage",
    "notifications",
    "scripting"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/assets/images/icon16.png",
      "48": "/assets/images/icon48.png",
      "128": "/assets/images/icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "/assets/images/icon16.png",
    "48": "/assets/images/icon48.png",
    "128": "/assets/images/icon128.png"
  },
  "options_page": "popup.html",
  "web_accessible_resources": [
    {
      "resources": [
        "notification01.wav",
        "_locales/en/messages.json",
        "_locales/pt/messages.json",
        "_locales/pt_BR/messages.json",
        "_locales/fr/messages.json",
        "_locales/es/messages.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}