Most Recent Used Tab Stack

Most Recent Used Tab Stack

Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Most Recent Used Tab Stack",
  "version": "1.5",
  "description": "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.",
  "short_name": "MRU Tab Stack",
  "background": {
    "persistant": false,
    "scripts": [
      "bg.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage"
  ],
  "commands": {
    "next": {
      "suggested_key": {
        "default": "Ctrl+Space"
      },
      "description": "Same as Ctrl+Tab but won't sort until you let go."
    }
  }
}