Venda Delivery

Venda Delivery

Automatização do seu whatsapp para impulsionar as vendas de delivery

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Venda Delivery",
  "description": "Automatização do seu whatsapp para impulsionar as vendas de delivery",
  "version": "0.3",
  "offline_enabled": true,
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "browser_action": {
    "default_title": "Test Extension",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "logo-16x16.png",
    "32": "logo-32x32.png",
    "48": "logo-48x48.png",
    "128": "logo-128x128.png"
  }
}