Switch between recent tabs (MRU tabs switch)

Switch between recent tabs (MRU tabs switch)

Use a keyboard shortcut to switch between two most recent tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.3",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "commands": {
    "inject-script": {
      "suggested_key": "Alt+Q",
      "description": "Switch to the previous tab"
    }
  }
}