Examine source code of Move Tab

Inspect and view changes in Move Tab source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Move Tab",
  "version": "1.2resigned1",
  "description": "Move active tab using Alt+Shift+Right or Alt+Shift+Left",
  "commands": {
    "toggle_left": {
      "suggested_key": {
        "default": "Alt+Shift+Left"
      },
      "description": "Send a 'toggle-left' event for the 'Move Tab' extension"
    },
    "toggle_right": {
      "suggested_key": {
        "default": "Alt+Shift+Right"
      },
      "description": "Send a 'toggle-right' event for the 'Move Tab' extension"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "icons": {
    "32": "icons/icon_32.png",
    "64": "icons/icon_64.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{1a5d9016-c6cd-4c73-b382-8228405bf540}"
    }
  }
}