TabToggle

TabToggle

A port of Tab Toggle by firesofmay legacy addon to Firefox Quantum and higher versions Pressing ALT-Q will switch to previous tab. Repeating this will toggle between two tabs.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "TabToggle",
  "version": "1.0",
  "description": "Toggle tab",
  "icons": {
    "48": "icons/toggle-48.png"
  },
  "permissions": [
    "tabs"
  ],
  "browser_action": {
    "default_icon": "icons/toggle-48.png",
    "default_title": "Toggle"
  },
  "commands": {
    "tab-toggle": {
      "suggested_key": {
        "default": "Alt+Q"
      },
      "description": "Send a 'tab-toggle' event"
    }
  },
  "background": {
    "scripts": [
      "tabtoggle.js"
    ]
  }
}