Keyboard Shortcuts to Reorder Tabs For Mac

Shortcuts: CMD + SHIFT + Left/Right Arrow on Mac, CMD + SHIFT + (5/6/7/8) to tab coorsponding position, 9 move to the end

什么是Keyboard Shortcuts to Reorder Tabs For Mac?

Keyboard Shortcuts to Reorder Tabs For Mac是由https://ldong.org开发的Chrome扩展程序,该扩展的主要功能是“Shortcuts: CMD + SHIFT + Left/Right Arrow on Mac, CMD + SHIFT + (5/6/7/8) to tab coorsponding position, 9 move to the end”。

下载Keyboard Shortcuts to Reorder Tabs For Mac扩展crx文件

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

扩展使用说明

                        Reorder shortcuts using:

CMD + SHIFT + Left/Right Arrow on Mac,

CMD + SHIFT + (5/6/7/8) to tab coorsponding position

CMD + SHIFT + 9 move to the end

Checkout github repo: https://github.com/ldong/chrome_tab_reorder                    

扩展基本信息

名称 Keyboard Shortcuts to Reorder Tabs For Mac Keyboard Shortcuts to Reorder Tabs For Mac
ID cimddfnjgmaimdkniombnlenidifeiai
官方URL https://chromewebstore.google.com/detail/keyboard-shortcuts-to-reo/cimddfnjgmaimdkniombnlenidifeiai
简介 Shortcuts: CMD + SHIFT + Left/Right Arrow on Mac, CMD + SHIFT + (5/6/7/8) to tab coorsponding position, 9 move to the end
文件大小 37.8 KB
安装次数 12
当前版本 0.1
更新时间 2015-04-16
上架时间 2015-04-16
评分 5.00/5 共1次评分
开发者 https://ldong.org
付费类型 free
扩展官网 https://github.com/ldong/chrome_tab_reorder
帮助页面URL https://github.com/ldong/chrome_tab_reorder
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard Shortcuts to Reorder Tabs For Mac",
    "version": "0.1",
    "manifest_version": 2,
    "description": "Shortcuts: CMD + SHIFT + Left\/Right Arrow on Mac, CMD + SHIFT + (5\/6\/7\/8) to tab coorsponding position, 9 move to the end",
    "permissions": [],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "tabreorder.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}