Move tabs between windows

Move tabs between windows

Click the extension's toolbar button, then switch to another Chrome window — selected tab(s) will move to that window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Move tabs between windows",
  "version": "1.0",
  "description": "Click the extension's toolbar button, then switch to another Chrome window — selected tab(s) will move to that window.",
  "manifest_version": 2,
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "offline_enabled": true,
  "browser_action": {
    "default_title": "Move tabs to another window"
  }
}