Zoho CRM inside WApp Web

Zoho CRM inside WApp Web

Access & Manage Zoho CRM users inside WApp Web for contacts. Add notes to Zoho CRM users directly from WApp

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zoho CRM inside WApp Web",
  "version": "5.0",
  "description": "Access & Manage Zoho CRM users inside WApp Web for contacts. Add notes to Zoho CRM users directly from WApp",
  "permissions": [
    "storage",
    "tabs",
    "https://*.zappsusercontent.com/*",
    "https://platform.zoho.com/*",
    "https://platform.zoho.in/*",
    "https://platform.zoho.eu/*",
    "https://platform.zoho.com.au/*",
    "https://platform.zoho.com.cn/*"
  ],
  "options_page": "popup.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "jquery.min.js",
        "contentScript.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.zappsusercontent.com/*",
      "https://ulgebra-cdn-cicd-crm-msgbrd.gitlab.io/*",
      "https://web.whatsapp.com/*",
      "https://app.azurna.com/*"
    ]
  },
  "page_action": {
    "default_popup": "popup.html",
    "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"
  },
  "web_accessible_resources": [
    "images/*"
  ],
  "manifest_version": 2
}