WAXP - Contacts Exporter for WhatsApp

WAXP - Contacts Exporter for WhatsApp

Export all or unsaved contacts from WhatsApp™ groups, chatlist and labels to CSV file.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WAXP - Contacts Exporter for WhatsApp",
  "short_name": "WAXP",
  "version": "1.68",
  "manifest_version": 2,
  "description": "Export all or unsaved contacts from WhatsApp™ groups, chatlist and labels to CSV file.",
  "homepage_url": "https://codegena.com/WhatsApp-Contacts-Exporter/",
  "icons": {
    "16": "/image/[email protected]",
    "48": "/image/[email protected]",
    "128": "/image/[email protected]"
  },
  "browser_action": {
    "default_icon": "/image/[email protected]",
    "default_title": "WAXP",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://web.whatsapp.com/"
      ],
      "js": [
        "/js/exceljs.min.js",
        "/js/filesaver.min.js",
        "/js/content_script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "/js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab",
    "*://api.gumroad.com/*",
    "storage",
    "identity",
    "identity.email"
  ],
  "web_accessible_resources": [
    "/js/client.js",
    "/js/libphonenumber-max.js",
    "popup.html",
    "/image/qrcode.png",
    "/image/profile-pic.jpg",
    "/video/loading-animation.mp4",
    "/video/green-spinner.mp4"
  ],
  "externally_connectable": {
    "matches": [
      "*://web.whatsapp.com/"
    ]
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}