Briteinno WhatsApp Ultimate

WhatsApp Group Extractor & Message Sender by Briteinno The WhatsApp Group Extractor & Message Sender is a powerful Firefox extension developed by Briteinno to enhance the functionality of WhatsApp Web. Designed with a sleek, modern interface
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "WhatsApp Group Extractor & Sender",
  "version": "1.0",
  "description": "Extract group contacts and send messages via Excel.",
  "icons": {
    "48": "icons/icon-48.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "https://web.whatsapp.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "icons/icon-48.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{73f3e964-d5d4-4611-8962-34a20769c67d}"
    }
  }
}