Alt Tab Shortcuts

Alt Tab Shortcuts

Speeds up tab management with simple shortcuts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Alt Tab Shortcuts",
  "version": "1.2.4",
  "description": "Speeds up tab management with simple shortcuts",
  "icons": {
    "16": "icon.16.png",
    "32": "icon.32.png",
    "48": "icon.48.png",
    "128": "icon.128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "commands": {
    "tabs-move-out": {
      "suggested_key": {
        "default": "Shift+Alt+Up"
      },
      "description": "Pop tabs out into new window"
    },
    "tabs-move-back": {
      "suggested_key": {
        "default": "Shift+Alt+Down"
      },
      "description": "Pop tabs back into last window"
    },
    "tabs-move-next": {
      "suggested_key": {
        "default": "Shift+Alt+Right"
      },
      "description": "Move tabs to the next/new window"
    },
    "tabs-move-prev": {
      "suggested_key": {
        "default": "Shift+Alt+Left"
      },
      "description": "Move tabs to the previous window"
    }
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "short_name": "AltTabs",
  "permissions": [
    "tabs"
  ]
}