Hot Tab

Move tabs easier

Hot Tab란 무엇입니까?

Hot Tab은(는) Mike Quinlan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Move tabs easier"입니다.

확장 프로그램 스크린샷

screenshot

Hot Tab 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Updates:

You can now see all registered shortcuts by clicking the toolbar icon.
You can now change the keyboard shortcuts by clicking on the app icon and clicking "Mange Shortcuts"

I got sick and tired of not being able to move my tabs left or right by use of hot keys (which, to me, seems like a feature that should be natively available in Chrome). Anyway, I've added hotkey support through this extension. Hot keys are registered by default as such:

    Move Left: Cmd/Ctrl+Shift+Left
    Move Right: Cmd/Ctrl+Shift+Right
    Pin/Unpin Tab: Cmd/Ctrl+Shift+Down
    Close other tabs: Cmd/Ctrl+Shift+K
    

Please leave feedback if you have any problems/ideas.                    

확장 프로그램 기본 정보

이름 Hot Tab Hot Tab
ID odmmgahbfhdcpnjccnlcnecoidkhemmg
공식 URL https://chromewebstore.google.com/detail/hot-tab/odmmgahbfhdcpnjccnlcnecoidkhemmg
설명 Move tabs easier
파일 크기 124 KB
설치 횟수 12
현재 버전 2.0.2
최근 업데이트 2023-12-06
출시 날짜 2020-05-04
개발자 Mike Quinlan
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hot Tab",
    "version": "2.0.2",
    "description": "Move tabs easier",
    "icons": {
        "48": "icons\/icon48.png"
    },
    "background": {
        "scripts": [
            "dist\/shared.js",
            "dist\/index.js"
        ]
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "permissions": [
        "contextMenus"
    ],
    "action": {
        "default_title": "Hot Tab",
        "default_popup": "popup.html",
        "default_icon": "icons\/icon128.png"
    },
    "commands": {
        "move-left": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left"
            },
            "description": "Move Tab Left"
        },
        "move-right": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right"
            },
            "description": "Move tab right"
        },
        "pin-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down"
            },
            "description": "Toggle pin current tab"
        },
        "close-other-tabs": {
            "suggested_key": {
                "default": "Ctrl+Shift+K"
            },
            "description": "Close other tabs"
        }
    }
}