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
官方網址 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
    }
}