WhatsApp Salesforce integration

WhatsApp Salesforce integration

Supercharge productivity with our revolutionary tool,seamlessly connecting WhatsApp and Salesforce!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "background": {
    "service_worker": "/background.js"
  },
  "version": "1.0.0.2",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "cookies",
    "scripting",
    "tabs"
  ],
  "host_permissions": [
    "https://*.salesforce.com/",
    "*://web.whatsapp.com/*",
    "https://wadeck.ai/*"
  ],
  "icons": {
    "16": "/assets/icon.png",
    "48": "/assets/icon.png",
    "128": "/assets/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*",
        "https://wadeck.ai/*"
      ],
      "js": [
        "/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "inject/*",
        "inject.js"
      ],
      "matches": [
        "https://web.whatsapp.com/*",
        "https://wadeck.ai/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "<all_urls>"
    ]
  }
}