ShuffleTab
Keyboard shortcut tool for managing tabs and windows
ShuffleTab란 무엇입니까?
ShuffleTab은(는) lausam.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keyboard shortcut tool for managing tabs and windows"입니다.
확장 프로그램 스크린샷
ShuffleTab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
By holding control along with the arrow keys, tabs can be arranged quickly and easily within a window, or transferred between them. Move tabs left or right, group tabs in a new window, and return them to their previous window all without using a mouse! --- Update 1.50 ------------------------ Added customisation options accessible by clicking on the ShuffleTab logo and going to the Settings tab: -Decide the behaviour of Control+Down; either moves the active tab, all until far left, or all until far right. -Determine if Control+Up returns a tab immediately or if it goes to far left first. -Tabs can now remember their position in the previous window; decide whether you want them to return to it. and more...
확장 프로그램 기본 정보
이름 | ShuffleTab |
ID | dgdnnanaohagafffokijmgcfnmhgcmeb |
공식 URL | https://chromewebstore.google.com/detail/shuffletab/dgdnnanaohagafffokijmgcfnmhgcmeb |
설명 | Keyboard shortcut tool for managing tabs and windows |
파일 크기 | 453 KB |
설치 횟수 | 67 |
현재 버전 | 1.50 |
최근 업데이트 | 2017-05-06 |
출시 날짜 | 2017-05-06 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | lausam.dev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ShuffleTab", "description": "Keyboard shortcut tool for managing tabs and windows", "version": "1.50", "offline_enabled": true, "icons": { "16": "icon2.png", "32": "icon2.png", "128": "icon.png" }, "browser_action": { "default_icon": "icon2.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "commands": { "leftTab": { "suggested_key": { "default": "Ctrl+Left" }, "description": "Move left" }, "rightTab": { "suggested_key": { "default": "Ctrl+Right" }, "description": "Move right" }, "firstTab": { "suggested_key": { "default": "Ctrl+Up" }, "description": "Return" }, "newWindow": { "suggested_key": { "default": "Ctrl+Down" }, "description": "New window" } }, "permissions": [ "tabs", "storage" ] } |