2 Whats Sender

2 Whats Sender

2whats is the best extention to send bulk whatsapp messages to any contacts .

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "2 Whats Sender",
  "author": "2 Whats",
  "description": "2whats is the best extention to send bulk whatsapp messages to any contacts .",
  "short_name": "2Whats",
  "manifest_version": 3,
  "version": "2.9.2",
  "background": {
    "service_worker": "app/background.js"
  },
  "content_scripts": [
    {
      "css": [
        "app/style.css"
      ],
      "js": [
        "app/fgEmojiPicker.js",
        "app/jquery.js",
        "app/bootstrap.bundle.min.js",
        "app/app.js",
        "app/content.js",
        "app/wppconnect-wa.js",
        "app/xlsx.full.min.js"
      ],
      "matches": [
        "*://*.whatsapp.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "imgs/16.png",
      "32": "imgs/32.png",
      "48": "imgs/48.png",
      "128": "imgs/128.png"
    }
  },
  "icons": {
    "16": "imgs/16.png",
    "32": "imgs/32.png",
    "48": "imgs/48.png",
    "128": "imgs/128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "background",
    "browsingData",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "app/*"
      ],
      "matches": [
        "https://*.whatsapp.com/*"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.whatsapp.com/*"
    ]
  }
}