Find WhatsApp Link - Group Invite Link

Find WhatsApp Link - Group Invite Link

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": "Find WhatsApp Link - Group Invite Link",
  "version": "1.0.28",
  "homepage_url": "https://web.whatsapp.com/",
  "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/*"
      ]
    }
  ]
}