WAPP Notifier

WAPP Notifier

Convenient to get the real-time notifications of messages, including Unread and Awaiting Reply.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "WAPP Notifier",
  "description": "Convenient to get the real-time notifications of messages, including Unread and Awaiting Reply.",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage",
    "identity",
    "identity.email"
  ],
  "host_permissions": [
    "https://web.whatsapp.com/",
    "http://web.whatsapp.com/"
  ],
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": {
      "48": "icons/48.png",
      "128": "icons/128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "inject-script.js"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ]
    }
  ],
  "version": "1.0.0"
}