Ctrl-Tab as Alt-Q

Ctrl-Tab as Alt-Q

Overrides the 'Alt+q' key combination to replace the last two tabs (by history). This is default behavior IDE by shortcuts 'Ctrl+Tab' UPD: Oh, this behavior of Ctrl-Tab can be enabled in the settings. Well, all right..

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Ctrl-Tab as Alt-Q",
  "version": "0.1",
  "description": "Overrides the 'Alt+q' key combination to replace the last two tabs (by history). This is default behavior IDE by shortcuts 'Ctrl+Tab'",
  "developer": {
    "name": "Andrianov ander182 Kirill"
  },
  "applications": {
    "gecko": {
      "id": "ctrl-tab-as-alt-q@ander.cf"
    }
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "commands": {
    "ctrl_tab": {
      "suggested_key": {
        "default": "Alt+Q"
      }
    }
  }
}