Whatsapp Scheduler

Whatsapp Scheduler

Schedule customized messages for your customers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Whatsapp Scheduler",
  "description": "__MSG_description__",
  "version": "1.3",
  "icons": {
    "16": "icons/16.png",
    "38": "icons/38.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "injector.js"
      ]
    }
  ],
  "action": {
    "default_popup": "pages/index.html"
  },
  "background": {
    "service_worker": "service_worker.js"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "resources": [
        "injected/WPP.js",
        "injected/script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs"
  ]
}