New Window Tab

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

Co to jest New Window Tab?

New Window Tab to rozszerzenie Chrome opracowane przez Ashkan, a jego główną funkcją jest „Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W)”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia New Window Tab

Pobierz pliki rozszerzeń New Window Tab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa New Window Tab New Window Tab
ID likdgnpafjdanfaaoendcmkkpefbfiel
Oficjalny URL https://chrome.google.com/webstore/detail/new-window-tab/likdgnpafjdanfaaoendcmkkpefbfiel
Opis Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W)
Rozmiar pliku 581 KB
Liczba instalacji 25
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2014-12-14
Data Publikacji 2014-12-14
Deweloper Ashkan
Typ Płatności free
Strona Rozszerzenia https://github.com/norcalli/newtabwindow
Obsługiwane Języki 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"
    ]
}