QuickShift Redux - Rearrange Chrome Tabs

Easily and quickly rearrange tabs with keyboard shortcuts.

QuickShift Redux - Rearrange Chrome Tabs란 무엇입니까?

QuickShift Redux - Rearrange Chrome Tabs은(는) Kenneth Lu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily and quickly rearrange tabs with keyboard shortcuts."입니다.

확장 프로그램 스크린샷

screenshot

QuickShift Redux - Rearrange Chrome Tabs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        QuickShift Redux is a Chrome extension that lets you easily and quickly rearrange tabs with keyboard shortcuts.

- Move tabs to the left or right within the same window
- Undock tabs to a new window
- Move tabs between windows

To customize your keyboard shortcuts, visit chrome://extensions/shortcuts and look for QuickShift Redux.

Check out the website for more information:
https://github.com/luyangkenneth/quickshift-redux                    

확장 프로그램 기본 정보

이름 QuickShift Redux - Rearrange Chrome Tabs QuickShift Redux - Rearrange Chrome Tabs
ID daiohbdbfnmpbolhbpbngdjdjcbclikm
공식 URL https://chromewebstore.google.com/detail/quickshift-redux-rearrang/daiohbdbfnmpbolhbpbngdjdjcbclikm
설명 Easily and quickly rearrange tabs with keyboard shortcuts.
파일 크기 597 KB
설치 횟수 192
현재 버전 1.3.0
최근 업데이트 2024-02-25
출시 날짜 2019-04-25
평점 4.50/5 총 2 개의 평점
개발자 Kenneth Lu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/luyangkenneth/quickshift-redux
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "QuickShift Redux - Rearrange Chrome Tabs",
    "short_name": "QuickShift Redux",
    "description": "Easily and quickly rearrange tabs with keyboard shortcuts.",
    "version": "1.3.0",
    "author": "Kenneth Lu",
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "commands": {
        "move-tabs-left": {
            "description": "Move tabs to the left",
            "suggested_key": {
                "default": "Ctrl+Shift+Left",
                "mac": "MacCtrl+Shift+Left"
            }
        },
        "move-tabs-right": {
            "description": "Move tabs to the right",
            "suggested_key": {
                "default": "Ctrl+Shift+Right",
                "mac": "MacCtrl+Shift+Right"
            }
        },
        "undock-tabs-to-new-window": {
            "description": "Undock tabs to a new window",
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "MacCtrl+Shift+U"
            }
        },
        "move-tabs-between-windows": {
            "description": "Move tabs between windows",
            "suggested_key": {
                "default": "Ctrl+Shift+M",
                "mac": "MacCtrl+Shift+M"
            }
        }
    }
}