Move tab to new window

Move tab to new window

Move the current tab into a new window

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Move tab to new window",
  "version": "0.1.0.0",
  "description": "Move the current tab into a new window",
  "short_name": "TabToNewWnd",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "newWnd.png",
    "default_title": "Move tab to a new Window"
  },
  "permissions": [
    "tabs"
  ],
  "manifest_version": 2
}