Tecimob

Tecimob

Plugin de atendimento do WhatsApp

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2024.05.23",
  "name": "Tecimob",
  "short_name": "Tecimob",
  "description": "Plugin de atendimento do WhatsApp",
  "homepage_url": "https://app.tecimob.com.br",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "whatsapp_content.bundle.js",
        "main.bundle.js"
      ]
    },
    {
      "matches": [
        "https://*.tecimob.com.br/*"
      ],
      "js": [
        "tecimob_content.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "/images/logo16.png",
    "32": "/images/logo32.png",
    "48": "/images/logo48.png",
    "128": "/images/logo128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.jpg",
        "*.svg",
        "*.png"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ]
    }
  ]
}