TabSwitch

TabSwitch

Tab switcher/swapper/toggler - switching to previous active tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TabSwitch",
  "description": "Tab switcher/swapper/toggler - switching to previous active tab",
  "version": "0.2",
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "img/swap_16.png",
    "48": "img/swap_48.png",
    "128": "img/swap_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "PreviousTab": {
      "suggested_key": {
        "default": "Ctrl+Q",
        "mac": "Command+Q"
      },
      "description": "Switch to previous active tab"
    }
  }
}