Tab Switcher

Tab Switcher

Switch tabs using ctrl+shift+z and ctrl+shift+x.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Switcher",
  "version": "0.1",
  "description": "Switch tabs using ctrl+shift+z and ctrl+shift+x.",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "previous-tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+Z"
      },
      "description": "Previous Tab"
    },
    "next-tab": {
      "suggested_key": {
        "default": "Ctrl+Shift+X"
      },
      "description": "Next Tab"
    }
  }
}