Telegram in Sidebar

Telegram in Sidebar

Displays Telegram 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": "Telegram in Sidebar",
  "version": "1.4.3",
  "description": "Displays Telegram in the sidebar.",
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{14390478-b41b-4e29-8307-8a3c714f7783}",
      "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": "Telegram",
    "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+T"
      },
      "description": "Toggle the Telegram sidebar."
    }
  },
  "browser_action": {
    "default_icon": {
      "16": "src/icons/16x16.png",
      "32": "src/icons/32x32.png"
    }
  }
}