Next Tab

Next Tab

Allows users to set key binding to change active tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Next Tab",
  "version": "1.0",
  "description": "Allows users to set key binding to change active tab.",
  "author": "Henry Wallis",
  "manifest_version": 2,
  "short_name": "Next Tab",
  "background": {
    "scripts": [
      "move.js"
    ],
    "persistent": false
  },
  "commands": {
    "previous-tab": {
      "suggested_key": {
        "default": "Ctrl+Left",
        "windows": "Ctrl+Left",
        "mac": "MacCtrl+Left"
      },
      "description": "Move to the tab to the left"
    },
    "next-tab": {
      "suggested_key": {
        "default": "Ctrl+Right",
        "windows": "Ctrl+Right",
        "mac": "MacCtrl+Right"
      },
      "description": "Move to the tab to the right"
    }
  },
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "icons": {
    "16": "favicon16.png",
    "24": "favicon24.png",
    "32": "favicon32.png",
    "64": "favicon64.png",
    "128": "favicon128.png"
  }
}