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란 무엇입니까?

Pop out tabs to new window은(는) Ivan Novikov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Click the extension's toolbar button to pop out selected tab(s) to a new window."입니다.

Pop out tabs to new window 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Pop out tabs to new window Pop out tabs to new window
ID lhnaddgiebpcecbcmfcjmlhinfpkkjii
공식 URL https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii
설명 Click the extension's toolbar button to pop out selected tab(s) to a new window.
파일 크기 3.38 KB
설치 횟수 248
현재 버전 1.1
최근 업데이트 2018-03-14
출시 날짜 2018-03-14
평점 5.00/5 총 3 개의 평점
개발자 Ivan Novikov
결제 유형 free
확장 프로그램 웹 사이트 https://twitter.com/ivan7237d
지원되는 언어 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"
        }
    }
}