Move tab to new window

Move the current tab into a new window

Vad är Move tab to new window?

Move tab to new window är en Chrome-tillägg utvecklad av Chimera, och dess huvudfunktion är "Move the current tab into a new window".

Ladda ner Move tab to new window-förlängningens CRX-fil

Ladda ner Move tab to new window-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Move tab to new window Move tab to new window
ID oakjilaellnhaoahkkmafkifjaoommam
Officiell webbadress https://chrome.google.com/webstore/detail/move-tab-to-new-window/oakjilaellnhaoahkkmafkifjaoommam
Beskrivning Move the current tab into a new window
Filstorlek 4.42 KB
Antal Installationer 80
Aktuell Version 0.1.0.0
Senast Uppdaterad 2014-04-18
Publiceringsdatum 2014-04-18
Betyg 5.00/5 Totalt 5 Betyg
Utvecklare Chimera
Betalningssätt free
Stödda Språk 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
}