Open New Tab Here

Open New Tab Here

A shortcut to open a new tab next to the current one

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Open New Tab Here",
  "short_name": "New Tab Here",
  "version": "1.1.0",
  "description": "A shortcut to open a new tab next to the current one",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "scripts": [
      "listener.js"
    ]
  },
  "browser_action": {
    "default_title": "Open a new tab next to the current one"
  },
  "commands": {
    "new-tab-here": {
      "suggested_key": {
        "default": "Alt+T",
        "mac": "MacCtrl+T"
      },
      "description": "Open a new tab next to the current one"
    },
    "new-tab-here-background": {
      "suggested_key": {
        "default": "Alt+Shift+T",
        "mac": "MacCtrl+Shift+T"
      },
      "description": "Open a new tab in the background next to the current one"
    }
  }
}