EFFESS Services Free Bulk Message Sender

EFFESS Services Free Bulk Message Sender

Send WhatsApp messages to a single user to multiple users in bulk without saving number.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EFFESS Services Free Bulk Message Sender",
  "manifest_version": 3,
  "description": "Send WhatsApp messages to a single user to multiple users in bulk without saving number.",
  "version": "1.0",
  "action": {
    "default_icon": {
      "16": "images/default_icon_16.png",
      "24": "images/default_icon_24.png",
      "32": "images/default_icon_32.png",
      "48": "images/default_icon_48.png",
      "128": "images/default_icon_128.png"
    },
    "default_title": "EFFESS Services Free Bulk Message Sender"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "libs/jquery-3.1.1.min.js",
        "contentscript/content.js"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "https://effess.in/*"
  ],
  "icons": {
    "16": "images/default_icon_16.png",
    "24": "images/default_icon_24.png",
    "32": "images/default_icon_32.png",
    "48": "images/default_icon_48.png",
    "128": "images/default_icon_128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "resources": [
        "images/*"
      ]
    }
  ]
}