WA Tracker - WhatsApp Online Status Watcher

WA Tracker - WhatsApp Online Status Watcher

Track WhatsApp online status and send notification when someone is online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "identity",
    "tabs",
    "notifications"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "oauth2": {
    "client_id": "628184170891-0rae3g55bsnfi7p28o5lb015hf2cbrj2.apps.googleusercontent.com",
    "scopes": [
      "openid",
      "email",
      "profile"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2a5ob9r11HLVuickP0txTG8G56QoO4rNKUHB4ptqyboy82OPGj3swi+I3ItFwWlV1oEXbTU5DO79MfXDRO9lkdr/T2yJAQolIRwAIKK/lnW+d29j1P6nqHWqdDg5hBGvCVNwV0+PajE47Mp0lTUQngRBsVYoh0NYYaBAXEBUZuWP30NipndFqSDFfDSW2WVi0vnTK4ywecGGR7lYU+gSzYsaZhb6uQGtWFQWr42o/5WeXdJXMAHbE/ZBwS7bCkloMkM8hkQW5W47LQpV1hRMDadV2G4EA/gWsMDZmRRZ9kdpkSveauctzFUgyIoTEVCiJ7vf+NF3MMiq3goOJ0QmDwIDAQAB",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "version": "1.0.0"
}