Desktop WA - online messenger

Desktop WA - online messenger

Get convenient access to your messages in WhatsApp. Receive notification for a new messages. WhatsApp non official App.

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"
  ],
  "host_permissions": [
    "https://web.whatsapp.com/",
    "http://web.whatsapp.com/"
  ],
  "icons": {
    "16": "icons/128.png",
    "48": "icons/128.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/128.png",
      "48": "icons/128.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",
        "redirect-link.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject-script.js",
        "fonts/*",
        "img/*"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ]
    }
  ],
  "version": "1.0.15"
}