ShuffleTab

Keyboard shortcut tool for managing tabs and windows

什么是ShuffleTab?

ShuffleTab是由lausam.dev开发的Chrome扩展程序,该扩展的主要功能是“Keyboard shortcut tool for managing tabs and windows”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载ShuffleTab扩展crx文件

下载ShuffleTab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        By holding control along with the arrow keys, tabs can be arranged quickly and easily within a window, or transferred between them. 
Move tabs left or right, group tabs in a new window, and return them to their previous window all without using a mouse!

--- Update 1.50 ------------------------
Added customisation options accessible by clicking on the ShuffleTab logo and going to the Settings tab:
    -Decide the behaviour of Control+Down; either moves the active tab,
     all until far left, or all until far right.
    -Determine if Control+Up returns a tab immediately or if it goes to far
     left first.
    -Tabs can now remember their position in the previous window; decide 
     whether you want them to return to it.
and more...                    

扩展基本信息

名称 ShuffleTab ShuffleTab
ID dgdnnanaohagafffokijmgcfnmhgcmeb
官方URL https://chromewebstore.google.com/detail/shuffletab/dgdnnanaohagafffokijmgcfnmhgcmeb
简介 Keyboard shortcut tool for managing tabs and windows
文件大小 453 KB
安装次数 67
当前版本 1.50
更新时间 2017-05-06
上架时间 2017-05-06
评分 5.00/5 共6次评分
开发者 lausam.dev
电子邮箱 [email protected]
付费类型 free
支持的语言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShuffleTab",
    "description": "Keyboard shortcut tool for managing tabs and windows",
    "version": "1.50",
    "offline_enabled": true,
    "icons": {
        "16": "icon2.png",
        "32": "icon2.png",
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon2.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "leftTab": {
            "suggested_key": {
                "default": "Ctrl+Left"
            },
            "description": "Move left"
        },
        "rightTab": {
            "suggested_key": {
                "default": "Ctrl+Right"
            },
            "description": "Move right"
        },
        "firstTab": {
            "suggested_key": {
                "default": "Ctrl+Up"
            },
            "description": "Return"
        },
        "newWindow": {
            "suggested_key": {
                "default": "Ctrl+Down"
            },
            "description": "New window"
        }
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}