Examine source code of WAPPMASTER Contacts Extractor

Inspect and view changes in WAPPMASTER Contacts Extractor source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "WAPPMASTER Contacts Extractor",
  "version": "2.2",
  "description": "Extract contacts from WhatsApp, including labeled and group contacts, then export them in CSV, Excel, JSON, and vCard formats ",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Wappmaster_whatsapp_chrome_extension_new",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}