Pop out tabs to new window

Click the extension's toolbar button to pop out selected tab(s) to a new window.

Pop out tabs to new window là gì?

Pop out tabs to new window là một tiện ích mở rộng Chrome được phát triển bởi Ivan Novikov, và tính năng chính của nó là "Click the extension's toolbar button to pop out selected tab(s) to a new window.".

Tải xuống tệp CRX của tiện ích mở rộng Pop out tabs to new window

Tải xuống các tệp mở rộng Pop out tabs to new window 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

                        Default shortcut: Alt+P.

Usually you have just the current tab selected, but Chrome also has built-in functionality to select multiple tabs:

— To select specific tabs in a window, click tab handles while holding down Cmd (Mac) or Ctrl (Windows) key.

— To select a range of tabs, click tab handles while holding down the Shift key.

Source code: https://github.com/ivan7237d/pop-out-tabs                    

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

Tên Pop out tabs to new window Pop out tabs to new window
ID lhnaddgiebpcecbcmfcjmlhinfpkkjii
URL Chính Thức https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii
Mô tả Click the extension's toolbar button to pop out selected tab(s) to a new window.
Kích Thước Tệp 3.38 KB
Số Lần Cài Đặt 248
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-03-14
Ngày Phát Hành 2018-03-14
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Ivan Novikov
Loại Thanh Toán free
Trang Web Mở Rộng https://twitter.com/ivan7237d
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pop out tabs to new window",
    "version": "1.1",
    "description": "Click the extension's toolbar button to pop out selected tab(s) to a new window.",
    "manifest_version": 2,
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "offline_enabled": true,
    "browser_action": {
        "default_title": "Pop out tabs to new window"
    },
    "commands": {
        "popout_action": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Pop out tabs to new window"
        }
    }
}