Izza Bot

Izza Bot

Extensão do chrome para agilizar o atendimento do delivery por whatsapp

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Izza Bot",
  "version": "44.0.0",
  "description": "Extensão do chrome para agilizar o atendimento do delivery por whatsapp",
  "icons": {
    "16": "logo/16.png",
    "32": "logo/32.png",
    "48": "logo/48.png",
    "128": "logo/128.png"
  },
  "permissions": [
    "webNavigation",
    "tabs",
    "scripting",
    "activeTab",
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "https://web.whatsapp.com/*",
    "https://sistema.appclientefiel.com.br/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "world": "MAIN",
      "all_frames": true,
      "run_at": "document_idle",
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "js/wppconnect.js",
        "js/wapi.js",
        "js/izza.js"
      ]
    }
  ],
  "action": {
    "default_title": "Izza Delivery extension",
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "logo/16.png",
      "32": "logo/32.png",
      "48": "logo/48.png",
      "128": "logo/128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "sounds/ring.mp3"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}