WhatsApp chat in Sidebar

WhatsApp chat in Sidebar

Display a sidebar that lets you talk to your friends using Whatsapp web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "WhatsApp chat in Sidebar",
  "description": "Displays a sidebar that lets you talk to your friends using Whatsapp web.",
  "version": "1.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "SidebarWhatsapp@Godie",
      "strict_min_version": "102.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "512": "icons/logo_whatsapp.svg"
  },
  "sidebar_action": {
    "default_icon": {
      "512": "icons/logo_whatsapp.svg"
    },
    "default_title": "Whatsapp",
    "default_panel": "index.html"
  },
  "browser_action": {
    "default_icon": {
      "512": "icons/logo_whatsapp.svg"
    }
  },
  "permissions": [
    "tabs"
  ]
}