Tab and Tab Group Shortcuts

Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.

什麼是Tab and Tab Group Shortcuts?

Tab and Tab Group Shortcuts是由bmalehorn開發的Chrome擴展程式,該擴展的主要功能是“Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.”。

擴展截圖

screenshot
screenshot

下載Tab and Tab Group Shortcuts擴展crx文件

下載Tab and Tab Group Shortcuts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Adds multiple shortcuts to manage tabs:


Opens a tab in the same group as the current tab.
Mac: Command+Shift+Y
Windows: Ctrl+Shift+Y

Swap the tab to the left, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Swap the tab to the right, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Move focus to the left, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.

Move focus to the right, moving into and out of opened tab groups.
Visit chrome://extensions/shortcuts to bind this shortcut.                    

擴展基本資訊

名稱 Tab and Tab Group Shortcuts Tab and Tab Group Shortcuts
ID nnbnphmhdbcgnekonlgniafbpcpapkep
官方網址 https://chromewebstore.google.com/detail/tab-and-tab-group-shortcu/nnbnphmhdbcgnekonlgniafbpcpapkep
簡介 Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.
檔案大小 6.83 KB
安裝次數 216
目前版本 1.0.6
更新時間 2023-10-08
上架時間 2022-07-19
評分 5.00/5 共 4 次評分
開發者 bmalehorn
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/bmalehorn/new-tab-in-tab-group
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab and Tab Group Shortcuts",
    "description": "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.",
    "version": "1.0.6",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "tabGroups"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "swap-right": {
            "description": "Swap tab to the right"
        },
        "swap-left": {
            "description": "Swap tab to the left"
        },
        "focus-left-into-group": {
            "description": "Move focus left into tab group"
        },
        "focus-right-into-group": {
            "description": "Move focus right into tab group"
        },
        "new-tab-in-group": {
            "description": "Open New Tab in Group",
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            }
        }
    },
    "icons": {
        "128": "icon.png"
    }
}