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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            }
        }
    }
}