Tab Mover (Move tabs with keyboard shortcuts)

Move your tabs around with keyboard shortcuts

什么是Tab Mover (Move tabs with keyboard shortcuts)?

Tab Mover (Move tabs with keyboard shortcuts)是由Dennis Paagman开发的Chrome扩展程序,该扩展的主要功能是“Move your tabs around with keyboard shortcuts”。

下载Tab Mover (Move tabs with keyboard shortcuts)扩展crx文件

下载Tab Mover (Move tabs with keyboard shortcuts)扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Move your tabs around with keyboard shortcuts.

Installation instructions:

Install the extension directly from the Chrome Web Store
Scroll to the bottom of your 'Extensions' preferences
Click 'Keyboard Shortcuts' at the bottom right
Set your keyboard shortcuts, I use Cmd-Shift-O and Cmd-Shift-P because they sit nicely close to tab switching shortcuts Cmd-Shift-[ and Cmd-Shift-]                    

扩展基本信息

名称 Tab Mover (Move tabs with keyboard shortcuts) Tab Mover (Move tabs with keyboard shortcuts)
ID dbkbmgieiomjnpimkilnkkcjioecdmio
官方URL https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio
简介 Move your tabs around with keyboard shortcuts
文件大小 19.11 KB
安装次数 46
当前版本 1.2
更新时间 2016-11-25
上架时间 2016-11-25
评分 3.67/5 共3次评分
开发者 Dennis Paagman
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Mover (Move tabs with keyboard shortcuts)",
    "short_name": "Tab Mover",
    "description": "Move your tabs around with keyboard shortcuts",
    "version": "1.2",
    "author": "Dennis Paagman",
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png"
    },
    "background": {
        "scripts": [
            "tabMover.js"
        ]
    },
    "permissions": [
        "activeTab"
    ],
    "commands": {
        "move-tab-left": {
            "suggested_key": {
                "default": "Ctrl+Shift+O",
                "mac": "Command+Shift+O"
            },
            "description": "Move current tab to the left"
        },
        "move-tab-right": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            },
            "description": "Move current tab to the right"
        }
    }
}