Group Contact Extractor for WA

Group Contact Extractor for WA

Easily export WhatsApp group contacts and chats contacts to CSV, Excel files.

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_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://*.whatsapp.com/*",
    "http://*.whatsapp.com/*"
  ],
  "icons": {
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": {
      "128": "icons/128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.whatsapp.com/*",
        "http://*.whatsapp.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "wa.js",
        "inject.js",
        "ga.js"
      ],
      "matches": [
        "*://*.whatsapp.com/*"
      ]
    }
  ],
  "version": "1.0.10"
}