Examine source code of Zoho Integration for WhatsApp Web

Inspect and view changes in Zoho Integration for WhatsApp Web source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Zoho Integration for WhatsApp Web",
  "description": "The Zoho Integration for WhatsApp Web connects your Zoho CRM with WhatsApp to manage, track, and streamline customer interactions.",
  "version": "9",
  "icons": {
    "16": "images/en-16.png",
    "32": "images/en-32.png",
    "48": "images/en-48.png",
    "128": "images/en-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "css": [],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "person.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/en-16.png",
      "32": "images/en-32.png",
      "48": "images/en-48.png",
      "128": "images/en-128.png"
    },
    "default_title": "Zoho Integration for WhatsApp Web"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "scripting",
    "unlimitedStorage",
    "identity",
    "identity.email"
  ],
  "host_permissions": [
    "https://web.whatsapp.com/*"
  ]
}