Contact Saver for WA

Contact Saver for WA

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

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__",
  "version": "1.0.17",
  "homepage_url": "https://web.whatsapp.com/",
  "description": "Export the whatsapp contact information you need according to the way you want.",
  "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"
    }
  ],
  "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",
        "pic/crm-commend.png"
      ],
      "matches": [
        "*://*.whatsapp.com/*"
      ]
    }
  ]
}