New Window Tab

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

New Window Tab là gì?

New Window Tab là một tiện ích mở rộng Chrome được phát triển bởi Ashkan, và tính năng chính của nó là "Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng New Window Tab

Tải xuống các tệp mở rộng New Window Tab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên New Window Tab New Window Tab
ID likdgnpafjdanfaaoendcmkkpefbfiel
URL Chính Thức https://chrome.google.com/webstore/detail/new-window-tab/likdgnpafjdanfaaoendcmkkpefbfiel
Mô tả Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W)
Kích Thước Tệp 581 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2014-12-14
Ngày Phát Hành 2014-12-14
Nhà Phát Triển Ashkan
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/norcalli/newtabwindow
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}