Desktop App for WhatsApp™ WEB

Desktop App for WhatsApp™ WEB

Chat in desktop App for WhatsApp and get instant notifications of new messages in your browser without opening WhatsApp website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.6",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "background": {
    "service_worker": "./chrome.js",
    "type": "module"
  },
  "default_locale": "en",
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_idle",
      "matches": [
        "*://*.web.whatsapp.com/*",
        "*://*.google.com/*",
        "*://*.bing.com/*",
        "*://*.google.de/*",
        "*://*.google.it/*",
        "*://*.google.es/*",
        "*://*.google.ca/*",
        "*://*.google.fr/*",
        "*://*.google.nl/*",
        "*://*.google.no/*",
        "*://*.google.pl/*",
        "*://*.google.at/*",
        "*://*.google.co.in/*"
      ],
      "js": [
        "data/include/jquery.js",
        "data/include/jquery.pep.js",
        "data/content_script/inject/inject.js"
      ]
    }
  ],
  "icons": {
    "16": "data/icons/16.png",
    "48": "data/icons/48.png",
    "128": "data/icons/128.png"
  },
  "action": {
    "default_icon": {
      "16": "data/icons/16.png",
      "48": "data/icons/48.png",
      "128": "data/icons/128.png"
    }
  }
}