MoTa

MoTa

A very simple extension to move tabs around with your keyboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MoTa",
  "version": "1.1.2",
  "manifest_version": 2,
  "description": "A very simple extension to move tabs around with your keyboard",
  "permissions": [],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "mover.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "listener.js"
      ]
    }
  ]
}