Search Any WhatsApp Group You Want

Search Any WhatsApp Group You Want

Auto scrape tons of WhatsApp group links to get WhatsApp group member's phone numbers.

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.14",
  "homepage_url": "https://waplus.io/",
  "description": "Auto scrape tons of WhatsApp group links to get WhatsApp group member's phone numbers.",
  "default_locale": "en",
  "permissions": [
    "storage",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://*.whatsapp.com/*"
      ],
      "js": [
        "js/redirect-link.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {
      "128": "icons/128.png"
    },
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "icons/icon128.png",
        "icons/logo.png",
        "icons/searching.gif",
        "icons/loading.gif",
        "icons/*.png",
        "icons/*.gif",
        "fonts/*",
        "li-popup/li-popup.html"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "img/*",
        "fonts/*"
      ],
      "matches": [
        "*://*.whatsapp.com/*"
      ]
    }
  ]
}