Online Tracker for WhatsApp™

Online Tracker for WhatsApp™

Online Tracker for WhatsApp™

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.2",
  "manifest_version": 2,
  "name": "Online Tracker for WhatsApp™",
  "description": "Online Tracker for WhatsApp™",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com 'unsafe-eval'; object-src 'self'",
  "icons": {
    "48": "/images/icon48.png",
    "128": "/images/icon128.png",
    "256": "/images/icon.png"
  },
  "background": {
    "scripts": [
      "/bg.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "https://web.whatsapp.com/"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://web.whatsapp.com/"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/web/web.js"
  ],
  "permissions": [
    "https://web.whatsapp.com/*",
    "notifications",
    "tabs"
  ]
}