Contacts And Group Number Exporter for WhatsApp

Contacts And Group Number Exporter for WhatsApp

Export the whatsapp contact information you need according to the way you want.

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__",
  "version": "1.0.51",
  "homepage_url": "https://web.whatsapp.com/",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "*://*.whatsapp.com/*"
  ],
  "icons": {
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.whatsapp.com/*"
      ],
      "js": [
        "inject/content-script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.whatsapp.com/*"
      ],
      "js": [
        "js/redirect-link.js"
      ],
      "css": [
        "css/wa-attach.css"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.whatsapp.com/*"
      ],
      "js": [
        "js/drainage-module.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./content2.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_title": "WhatsApp Group Exporter- Group download",
    "default_popup": "popup.html",
    "default_icon": {
      "128": "icons/128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "inject/inject.js",
        "wppconnect-wa.js",
        "pic/crm-commend.png",
        "js/drainage-module/drainage-module.js",
        "fonts/*",
        "images/*",
        "icons/*"
      ],
      "matches": [
        "*://*.whatsapp.com/*"
      ]
    }
  ]
}