Speed Whats Sender

Speed Whats Sender

A tool to organize sending thousands of Whats messages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Speed Marketing",
  "background": {
    "service_worker": "app/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "css": [
        "app/style.css"
      ],
      "js": [
        "app/jquery.js",
        "app/app.js",
        "app/content.js",
        "app/xlsx.full.min.js"
      ],
      "matches": [
        "*://web.whatsapp.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "imgs/16.png",
      "32": "imgs/32.png",
      "48": "imgs/48.png",
      "128": "imgs/128.png"
    }
  },
  "description": "A tool to organize sending thousands of Whats messages",
  "icons": {
    "16": "imgs/16.png",
    "32": "imgs/32.png",
    "48": "imgs/48.png",
    "128": "imgs/128.png"
  },
  "manifest_version": 3,
  "name": "Speed Whats Sender",
  "permissions": [
    "activeTab",
    "scripting",
    "background",
    "webRequest",
    "declarativeNetRequest",
    "browsingData",
    "tabs"
  ],
  "short_name": "SpeWhats",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "3.3.0",
  "web_accessible_resources": [
    {
      "resources": [
        "app/*",
        "imgs/*"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.whatsapp.com/*",
      "http://localhost:3000/"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src  'self' 'wasm-unsafe-eval'; object-src 'self'"
  }
}