Video Chat for WhatsApp™ Web

Video Chat for WhatsApp™ Web

The best way to make Video calls using WhatsApp™ web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Video Chat for WhatsApp™ Web",
  "version": "1.0",
  "description": "The best way to make Video calls using WhatsApp™ web",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Video Chat for WhatsApp™ Web",
    "default_icon": {
      "16": "images/logo_16.png",
      "32": "images/logo_32.png",
      "48": "images/logo_48.png",
      "128": "images/logo_128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/"
      ],
      "css": [
        "injection_style.css"
      ],
      "js": [
        "jquery-3.5.1.min.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/logo_16.png",
    "32": "images/logo_32.png",
    "48": "images/logo_48.png",
    "128": "images/logo_128.png"
  },
  "permissions": [
    "https://web.whatsapp.com/"
  ]
}