Examine source code of Sender Bulk Chat WA

Inspect and view changes in Sender Bulk Chat WA source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "es",
  "name": "__MSG_extensionName__",
  "version": "0.3.6",
  "description": "__MSG_extensionDescription__",
  "host_permissions": [
    "https://web.whatsapp.com/*"
  ],
  "permissions": [
    "tabs",
    "https://web.whatsapp.com/*"
  ],
  "action": {
    "default_popup": "popup/index.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "content-ui/index.iife.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.js",
        "*.css",
        "*.svg",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}