Switch tabs shortcuts
Adds custom shortcuts for switching tabs.
Switch tabs shortcuts란 무엇입니까?
Switch tabs shortcuts은(는) Yutaro Yoshii에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds custom shortcuts for switching tabs."입니다.
확장 프로그램 스크린샷
Switch tabs shortcuts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds custom shortcuts for switching tabs. After installing, you will be able to customize your shortcuts through chrome://extensions/shortcuts The default key bindings are as follows: Jump to the previous open tab mac: "Command+Shift+Left" other platforms: "Ctrl+Shift+Left" Jump to the next open tab mac: "Command+Shift+Right" other platforms: "Ctrl+Shift+Right" Jump to the last open tab mac: "Command+Shift+Up" other platforms: "Ctrl+Shift+Up" Jump to the first open tab mac: "Command+Shift+Down" other platforms: "Ctrl+Shift+Down"
확장 프로그램 기본 정보
이름 | Switch tabs shortcuts |
ID | fejclhnofpjonlkijaekjpoehpinhlab |
공식 URL | https://chromewebstore.google.com/detail/switch-tabs-shortcuts/fejclhnofpjonlkijaekjpoehpinhlab |
설명 | Adds custom shortcuts for switching tabs. |
파일 크기 | 8.29 KB |
설치 횟수 | 255 |
현재 버전 | 1.0 |
최근 업데이트 | 2023-10-09 |
출시 날짜 | 2020-03-03 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Yutaro Yoshii |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://developer.chrome.com/docs/webstore/program-policies/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Switch tabs shortcuts", "short_name": "Switch tabs", "version": "1.0", "description": "Adds custom shortcuts for switching tabs.", "author": "Yutaro Yoshii", "manifest_version": 2, "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs" ], "commands": { "tab_left": { "suggested_key": { "default": "Ctrl+Shift+Left", "mac": "Command+Shift+Left" }, "description": "Jump to the previous open tab" }, "tab_right": { "suggested_key": { "default": "Ctrl+Shift+Right", "mac": "Command+Shift+Right" }, "description": "Jump to the next open tab" }, "tab_first": { "suggested_key": { "default": "Ctrl+Shift+Up", "mac": "Command+Shift+Up" }, "description": "Jump to the last open tab" }, "tab_last": { "suggested_key": { "default": "Ctrl+Shift+Down", "mac": "Command+Shift+Down" }, "description": "Jump to the first open tab" } } } |