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ファイルをダウンロード

QuickShift Redux - Rearrange Chrome Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            }
        }
    }
}