TOTVS CRM WhatsApp Extension

TOTVS CRM WhatsApp Extension

Integração do WhatsApp Web com o TOTVS CRM Gestão de Clientes

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "TOTVS CRM WhatsApp Extension",
  "name": "TOTVS CRM WhatsApp Extension",
  "description": "Integração do WhatsApp Web com o TOTVS CRM Gestão de Clientes",
  "version": "1.6.2",
  "manifest_version": 3,
  "icons": {
    "16": "images/totvs-crm-16.png",
    "48": "images/totvs-crm-48.png",
    "128": "images/totvs-crm-128.png"
  },
  "action": {
    "default_title": "TOTVS CRM WhatsApp Extension"
  },
  "background": {
    "service_worker": "app/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://web.whatsapp.com/*"
      ],
      "css": [
        "/css/root.css"
      ],
      "js": [
        "inject.js",
        "/static/js/content.js",
        "/app/Interceptor.js"
      ]
    }
  ],
  "permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "/app/Interceptor.js",
        "/static/css/content.css",
        "/static/media/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}