Backup WhatsApp Chats

Backup WhatsApp Chats

Downloads a backup of your WhatsApp chats

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "css": [
        "css/progressbar.css"
      ],
      "js": [
        "js/cs.js",
        "js/FileSaver.js",
        "js/injectedWA.js",
        "js/jszip.js"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "description": "Downloads a backup of your WhatsApp chats",
  "externally_connectable": {
    "matches": [
      "*://*.whatsapp.com/*",
      "*://*.whatsapp.net/*"
    ]
  },
  "icons": {
    "128": "imgs/icon.png"
  },
  "manifest_version": 2,
  "name": "Backup WhatsApp Chats",
  "permissions": [
    "storage",
    "https://web.whatsapp.com/"
  ],
  "version": "1.1.0",
  "web_accessible_resources": [
    "js/progressBar.js",
    "js/injectedWA.js",
    "js/moment-with-locales.js",
    "js/FileSaver.js",
    "css/progressbar.css",
    "imgs/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}