WhatsApp in Sidebar

WhatsApp in Sidebar

Displays WhatsApp in the sidebar, provides customizable keyboard shortcut and toggle button. Follow my step-by-step guide to unlock the sidebar width on GitHub.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "WhatsApp in Sidebar",
  "version": "2.1.2",
  "description": "Displays WhatsApp in the Sidebar",
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{2b38cb05-9cff-44a7-b9f1-7cc575afab8a}",
      "strict_min_version": "100.0"
    }
  },
  "options_ui": {
    "page": "src/options/options.html",
    "browser_style": true
  },
  "sidebar_action": {
    "default_icon": {
      "48": "src/icons/48x48.png",
      "96": "src/icons/96x96.png"
    },
    "default_title": "WhatsApp",
    "default_panel": "src/sidebar/panel.html"
  },
  "icons": {
    "48": "src/icons/48x48.png",
    "96": "src/icons/96x96.png"
  },
  "commands": {
    "_execute_sidebar_action": {
      "suggested_key": {
        "default": "Alt+Shift+W"
      },
      "description": "Toggle WhatsApp in the sidebar."
    }
  },
  "browser_action": {
    "default_icon": {
      "16": "src/icons/16x16.png",
      "32": "src/icons/32x32.png"
    }
  }
}