Vertical Tabs Popup

Vertical Tabs Popup

Keep it simple! A very simple extension that lets you see the tabs in a vertical manner in a popup window. The window can…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Vertical Tabs Popup",
  "description": "",
  "version": "0.14",
  "background": {
    "scripts": [
      "script.js"
    ]
  },
  "browser_action": {
    "default_popup": "browser_action.html"
  },
  "permissions": [
    "tabs",
    "bookmarks",
    "<all_urls>"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      }
    },
    "next_tab": {
      "suggested_key": {
        "default": "Ctrl+Tab",
        "mac": "MacCtrl+Tab"
      },
      "description": "next_tab"
    },
    "previous_tab": {
      "suggested_key": {
        "default": "Ctrl+Tab",
        "mac": "MacCtrl+Shift+Tab"
      },
      "description": "previous_tab"
    },
    "previous_tab_jump": {
      "description": "previous_tab_jump"
    },
    "next_tab_jump": {
      "description": "next_tab_jump"
    }
  }
}