WA Booster - Send WhatsApp Messages

WA Booster - Send WhatsApp Messages

Send Bulk WhatsApp Messages

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "WA Booster - Send WhatsApp Messages",
  "version": "2.0.0",
  "description": "Send Bulk WhatsApp Messages",
  "icons": {
    "16": "assets/logo.png",
    "48": "assets/logo.png",
    "128": "assets/logo.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://web.whatsapp.com/",
        "https://api.whatsapp.com/"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "WA Booster - Send WhatsApp Messages",
    "default_icon": {}
  },
  "permissions": [
    "storage",
    "identity",
    "identity.email",
    "https://wabooster.xyz/",
    "http://127.0.0.1:8000/"
  ]
}