Move Tab Hotkeys

Move Tab Hotkeys

Hotkeys to move tabs around

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Move Tab Hotkeys",
  "description": "Hotkeys to move tabs around",
  "homepage_url": "https://github.com/jmmerz/move-tab-hotkeys",
  "manifest_version": 2,
  "version": "2.2.1",
  "author": "Jonathon Merz",
  "icons": {
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "common/browserCompatibility.js",
      "common/globalOptions.js",
      "moveTabs.js"
    ]
  },
  "commands": {
    "move-tab-left": {
      "suggested_key": {
        "default": "Alt+Shift+Left"
      },
      "description": "Move the selected tab(s) left"
    },
    "move-tab-right": {
      "suggested_key": {
        "default": "Alt+Shift+Right"
      },
      "description": "Move the selected tab(s) right"
    },
    "move-tab-first-numbers-row": {
      "suggested_key": {
        "default": "Alt+Shift+0"
      },
      "description": "Move the selected tab(s) to the start"
    },
    "move-tab-last-numbers-row": {
      "suggested_key": {
        "default": "Alt+Shift+9"
      },
      "description": "Move the selected tab(s) to the end"
    }
  },
  "options_ui": {
    "page": "options/options.html"
  }
}