Zap Chatbot

Zap Chatbot

Automatização de whatsapp

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Zap Chatbot",
  "version": "0.5.5",
  "description": "Automatização de whatsapp",
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "options_page": "options.html",
  "browser_action": {
    "default_title": "Painel de Controle",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "wapi.js",
    "popup.js",
    "style.css"
  ],
  "icons": {
    "16": "logo-16x16.png",
    "32": "logo-32x32.png",
    "48": "logo-48x48.png",
    "128": "logo-128x128.png"
  },
  "manifest_version": 2
}