Tab Keys

Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.

Tab Keys란 무엇입니까?

Tab Keys은(는) thekiteeatingtree에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab."입니다.

Tab Keys 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Allows you to set keyboard shortcuts for selecting the next or previous tab.  Also offers the ability to add a shortcut to pin tabs.  

The default shortcuts for next/prev tab are Ctrl+Right/Left.  To edit the shortcuts click on the extension icon and hit 'Manage extensions'.  Scroll to the bottom of the page and click 'Keyboard shortcuts'.  This extensions shortcuts will be editable under the 'Tab Keys' header.                    

확장 프로그램 기본 정보

이름 Tab Keys Tab Keys
ID fmmkbjckdjobofhoikpldcahemfccffo
공식 URL https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo
설명 Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
파일 크기 4.5 KB
설치 횟수 21
현재 버전 1.0
최근 업데이트 2017-07-27
출시 날짜 2017-07-27
개발자 thekiteeatingtree
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/TheKiteEatingTree/TabKeys
도움말 페이지 URL https://github.com/TheKiteEatingTree/TabKeys/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Keys",
    "description": "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next\/prev tab.",
    "version": "1.0",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Right"
            },
            "description": "Select the next tab"
        },
        "prev-tab": {
            "suggested_key": {
                "default": "Ctrl+Left"
            },
            "description": "Select the previous tab"
        },
        "pin-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            },
            "description": "Pin the current tab"
        }
    }
}