Swift Tab Switcher

Use shortcuts to quickly switch your current tab.

Swift Tab Switcherคืออะไร?

Swift Tab Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rob Bennett และคุณลักษณะหลักของมันคือ "Use shortcuts to quickly switch your current tab."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Swift Tab Switcher

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
            }
        }
    }
}