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
电子邮箱 [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"
            }
        }
    }
}