Move tab to new window

Move the current tab into a new window

What is Move tab to new window?

Move tab to new window is a Chrome extension developed by Chimera, and its main feature is "Move the current tab into a new window".

Download Move tab to new window Extension CRX File

Download Move tab to new window extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Move a tab into its own window. You can bind a shortcut key to this action, allowing you to put a tab in a new window, without taking your hands off the keyboard.

Source code available here: https://github.com/tvdv/Tab2NewWnd                    

Extension Basic Information

Name Move tab to new window Move tab to new window
ID oakjilaellnhaoahkkmafkifjaoommam
Official URL https://chrome.google.com/webstore/detail/move-tab-to-new-window/oakjilaellnhaoahkkmafkifjaoommam
Description Move the current tab into a new window
File Size 4.42 KB
Installation Count 80
Current Version 0.1.0.0
Last Updated 2014-04-18
Publish Date 2014-04-18
Rating 5.00/5 Total 5 Ratings
Developer Chimera
Payment Type free
Supported Languages en
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
}