WAPPMASTER Contacts Extractor

WAPPMASTER Contacts Extractor

Extract contacts from WhatsApp, including labeled and group contacts, then export them in CSV, Excel, JSON, and vCard formats

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "WAPPMASTER Contacts Extractor",
  "version": "1.0",
  "description": "Extract contacts from WhatsApp, including labeled and group contacts, then export them in CSV, Excel, JSON, and vCard formats ",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "WAPPMASTER Contacts Extractor"
  },
  "icons": {
    "16": "wa-icon.png",
    "48": "wa-icon.png",
    "128": "wa-icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}