Notifyer

Notifyer

Set notifications when certain words are spoken in Google Meets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Notifyer",
  "version": "1.4",
  "description": "Set notifications when certain words are spoken in Google Meets.",
  "permissions": [
    "declarativeContent",
    "storage",
    "notifications"
  ],
  "content_scripts": [
    {
      "js": [
        "js/meet.js"
      ],
      "matches": [
        "*://*.meet.google.com/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "img/logo16.png",
      "32": "img/logo32.png",
      "48": "img/logo48.png",
      "128": "img/logo128.png"
    }
  },
  "icons": {
    "16": "img/logo16.png",
    "32": "img/logo32.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "manifest_version": 2
}