Contact Saver for WhatsApp™

Contact Saver for WhatsApp™

You can directly export your saved and unsaved numbers from WhatsApp groups and chats.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Contact Saver for WhatsApp™",
  "description": "You can directly export your saved and unsaved numbers from WhatsApp groups and chats.",
  "version": "2.0.10",
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts; script-src 'self' https://www.google-analytics.com https://google-analytics.com; object-src 'self'"
  },
  "background": {
    "service_worker": "/dist/background.js"
  },
  "action": {
    "default_icon": {
      "16": "image/[email protected]",
      "32": "image/[email protected]",
      "48": "image/[email protected]",
      "128": "image/[email protected]"
    }
  },
  "icons": {
    "16": "image/[email protected]",
    "32": "image/[email protected]",
    "48": "image/[email protected]",
    "128": "image/[email protected]"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/dist/foneParse.js",
        "/dist/gowa.js"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/"
      ],
      "js": [
        "/dist/script.js",
        "/dist/gowa.js"
      ],
      "run_at": "document_end"
    }
  ]
}