Freshsales inside Whatsapp Web

Freshsales inside Whatsapp Web

Manage Freshsales contacts inside WhatsApp web. Add notes to Freshsales contacts directly from WhatsApp web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Freshsales inside Whatsapp Web",
  "version": "2.0",
  "description": "Manage Freshsales contacts inside WhatsApp web. Add notes to Freshsales contacts directly from WhatsApp web",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*/.myfreshworks/*",
    "https://*/.freshworks/*"
  ],
  "options_page": "popup.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "jquery.min.js",
        "contentScript.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.azurna.com/*"
    ]
  },
  "action": {
    "default_icon": {
      "16": "images/whatsapp-business-logo-16.png",
      "32": "images/whatsapp-business-logo-32.png",
      "48": "images/whatsapp-business-logo-48.png",
      "128": "images/whatsapp-business-logo-128.png"
    }
  },
  "icons": {
    "16": "images/whatsapp-business-logo-16.png",
    "32": "images/whatsapp-business-logo-32.png",
    "48": "images/whatsapp-business-logo-48.png",
    "128": "images/whatsapp-business-logo-128.png"
  },
  "manifest_version": 3
}