Move Tab to Next Window

One-click to move a tab, NOW with Tab Groups support!

Move Tab to Next Window란 무엇입니까?

Move Tab to Next Window은(는) Roman Shevtsov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "One-click to move a tab, NOW with Tab Groups support!"입니다.

확장 프로그램 스크린샷

screenshot

Move Tab to Next Window 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Especially useful for these amazing multi-monitor setups when it's too annoying to drag tabs around between windows.

## Quick feature list
- the source tab position is saved in all windows, so if it's moved back into a window, it moves into its original position
- if the tab is in a tab group, when moving it the identical group will be created or used in another window. When moving back to original window the tab will return into its original group
- multiple tabs move - select multiple tabs (use shift or cmd/ctrl) and move all of them into the next window in the same order
- if there is only 1 window, a new window will be opened on move
- keyboard shortcut support

Open sourced on Github for transparency.                    

확장 프로그램 기본 정보

이름 Move Tab to Next Window Move Tab to Next Window
ID ibpemckpjfpmhlagogddlajhaiemdjaf
공식 URL https://chromewebstore.google.com/detail/move-tab-to-next-window/ibpemckpjfpmhlagogddlajhaiemdjaf
설명 One-click to move a tab, NOW with Tab Groups support!
파일 크기 13.82 KB
설치 횟수 452
현재 버전 1.1.0
최근 업데이트 2023-08-31
출시 날짜 2020-06-04
평점 5.00/5 총 7 개의 평점
개발자 Roman Shevtsov
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rshev/MoveTabToNextWindow
도움말 페이지 URL https://github.com/rshev/MoveTabToNextWindow
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Move Tab to Next Window",
    "version": "1.1.0",
    "description": "One-click to move a tab, NOW with Tab Groups support!",
    "homepage_url": "https:\/\/github.com\/rshev\/MoveTabToNextWindow",
    "permissions": [
        "tabGroups",
        "storage"
    ],
    "background": {
        "service_worker": "index.js"
    },
    "icons": {
        "16": "icon-dark-outlined-16.png",
        "32": "icon-dark-outlined-32.png",
        "48": "icon-dark-outlined-48.png",
        "128": "icon-dark-outlined-128.png"
    },
    "action": {
        "default_title": "Move Tab to Next Window",
        "default_icon": {
            "16": "icon-light-outlined-16.png",
            "32": "icon-light-outlined-32.png"
        }
    },
    "commands": {
        "move-tab": {
            "description": "Move Tab to Next Window"
        }
    }
}