Swift Tab Switcher

Use shortcuts to quickly switch your current tab.

什麼是Swift Tab Switcher?

Swift Tab Switcher是由Rob Bennett開發的Chrome擴展程式,該擴展的主要功能是“Use shortcuts to quickly switch your current tab.”。

擴展截圖

screenshot
screenshot
screenshot

下載Swift Tab Switcher擴展crx文件

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

擴展使用說明

                        Tired of clicking on your tabs? Use keyboard shortcuts instead. This extension makes it easy to navigate whether you have 3 tabs or 100 tabs. Make your browser navigation lightning-quick with Swift Tab Switcher.

Tab Switching:
Using any keyboard shortcuts supported by the browser

Instructions:
1. Open the options for this extension
2. Change the options & keyboard shortcuts as needed
3. Use your keyboard shortcut to move left & right

Options:
Skip collapsed tab groups
Switch across windows
Wrap to first and last tabs

Storage Sync:
Options saved for use on any computer                    

擴展基本資訊

名稱 Swift Tab Switcher Swift Tab Switcher
ID pdncaffclfaalcafoebejjbefknohkjg
官方網址 https://chromewebstore.google.com/detail/swift-tab-switcher/pdncaffclfaalcafoebejjbefknohkjg
簡介 Use shortcuts to quickly switch your current tab.
檔案大小 98.95 KB
安裝次數 134
目前版本 3.2
更新時間 2023-08-28
上架時間 2017-04-08
評分 5.00/5 共 3 次評分
開發者 Rob Bennett
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/RobbyCBennett/SwiftTabSwitcher
隱私政策頁面URL https://gist.github.com/RobbyCBennett/764d8f497f678c91d13ecb2ef38d8915
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Swift Tab Switcher",
    "short_name": "Swift Tab Switcher",
    "description": "Use shortcuts to quickly switch your current tab.",
    "author": "Robby Bennett",
    "icons": {
        "16": "\/assets\/icon16.png",
        "32": "\/assets\/icon32.png",
        "48": "\/assets\/icon48.png",
        "128": "\/assets\/icon128.png"
    },
    "version": "3.2",
    "minimum_chrome_version": "112.0.5615.50",
    "action": {
        "default_icon": "\/assets\/icon128.png",
        "default_popup": "\/options\/options.html#popup"
    },
    "options_ui": {
        "page": "\/options\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "tabGroups",
        "storage"
    ],
    "background": {
        "service_worker": "\/sw.js"
    },
    "commands": {
        "rightTab": {
            "description": "Right",
            "suggested_key": {
                "default": "Ctrl+Right",
                "mac": "Command+Right"
            }
        },
        "leftTab": {
            "description": "Left",
            "suggested_key": {
                "default": "Ctrl+Left",
                "mac": "Command+Left"
            }
        }
    }
}