Most Recent Tab - Keyboard shortcut for last tab

Most Recent Tab - Keyboard shortcut for last tab

Adds a keyboard shortcut (default: control-shift-1 / cmd-shift-1) and toolbar button to quickly go back to the previously selected tab. Useful to alternate between two tabs and to easy go back to your last tab if you switch to another briefly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "60.0",
      "id": "jid0-LWzdpvwYVlFi9mYfHgWxSB6aFEY@jetpack"
    }
  },
  "background": {
    "scripts": [
      "index.js"
    ]
  },
  "commands": {
    "most-recent-tab-command": {
      "suggested_key": {
        "default": "Ctrl+Shift+1",
        "linux": "Ctrl+Shift+1"
      },
      "description": "Main: Jump to the previously viewed tab, the most recent tab"
    },
    "most-recent-tab-command-second": {
      "description": "Optional: Jump to the second most recent tab"
    },
    "most-recent-tab-command-third": {
      "description": "Optional: Jump to the third most recent tab"
    }
  },
  "browser_action": {
    "default_icon": {
      "64": "icon.png"
    }
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "icons": {
    "64": "icon.png"
  },
  "manifest_version": 2,
  "name": "Most Recent Tab",
  "author": "Paul V",
  "description": "Adds a keyboard shortcut and toolbar item to switch back to your most recently selected tab. Useful to alternate between two tabs and to easy go back to your last tab if you switch to another briefly. The shortcut is set to Control-shift-1 on Windows and Command-shift-1 on Mac.",
  "version": "3.2",
  "permissions": [
    "storage"
  ]
}