New Window Tab

Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W)

Was ist New Window Tab?

New Window Tab ist eine Chrome-Erweiterung, die von Ashkan entwickelt wurde, und ihr Hauptmerkmal ist "Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W)".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

New Window Tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie New Window Tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        A chrome extension that fills a simple need. It creates a keyboard shortcut (Alt+Shift+W by default) which pops out the current tab into a new window. It automatically chooses the window location using chrome's suggestion for a "natural" offset (about 10 pixels offset from parent's top and left). It keeps the same window size as the parent window.                    

Grundlegende Informationen zur Erweiterung

Name New Window Tab New Window Tab
ID likdgnpafjdanfaaoendcmkkpefbfiel
Offizielle URL https://chrome.google.com/webstore/detail/new-window-tab/likdgnpafjdanfaaoendcmkkpefbfiel
Beschreibung Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W)
Dateigröße 581 KB
Installationsanzahl 25
Aktuelle Version 1.0.0
Letztes Update 2014-12-14
Veröffentlichungsdatum 2014-12-14
Entwickler Ashkan
Zahlungsart free
Erweiterungswebsite https://github.com/norcalli/newtabwindow
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Window Tab",
    "description": "Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W)",
    "version": "1.0.0",
    "manifest_version": 2,
    "minimum_chrome_version": "19",
    "icons": {
        "16": "icons\/win16.png",
        "48": "icons\/win48.png",
        "128": "icons\/win128.png"
    },
    "background": {
        "scripts": [
            "js\/hook.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-feature": {
            "suggested_key": {
                "default": "Alt+Shift+W"
            },
            "description": "Open current tab in new window"
        }
    },
    "permissions": [
        "tabs"
    ]
}