Rocket Sender

Rocket Sender

Previously called WARocket. Customer service and engagement tool. Adds customer engagement amd privacy features.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "4.16.0",
  "manifest_version": 3,
  "icons": {
    "16": "images/icons/icon16.png",
    "32": "images/icons/icon32.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "https://*.whatsapp.com/*",
        "https://*.whatsapprocket.io/*",
        "https://*.warocket.com/*",
        "https://*.rocketsend.io/*"
      ],
      "js": [
        "dist/content.bundle.js"
      ]
    }
  ],
  "background": {
    "service_worker": "main-service-worker.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.whatsapp.com/*",
    "https://*.whatsapprocket.io/*",
    "https://*.rocketsend.io/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/rocket_icon.svg",
        "images/star.svg",
        "images/stop_icon.svg",
        "images/gear_icon.svg",
        "images/rocket-send.gif",
        "audio/notification.mp3"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}