Alt Tab Shortcuts
Speeds up tab management with simple shortcuts
Alt Tab Shortcuts란 무엇입니까?
Alt Tab Shortcuts은(는) iamogbz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Speeds up tab management with simple shortcuts"입니다.
확장 프로그램 스크린샷
Alt Tab Shortcuts 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension provides shortcuts for moving tabs between already open chrome windows. 1. Alt+Shift+Right - Move tabs to the next/new window 2. Alt+Shift+Left - Move tabs to the previous window 3. Alt+Shift+Up - Pop tabs into new window 4. Alt+Shift+Down - Pop tabs back into last window / Undo last move action Stuck performing the following actions when switching or moving tabs between windows? 1. Select and drag out the tabs to a new window 2. Verify the desired destination window is visible below 3. Select and drags tabs to the destination window That's frustrating and cumbersome especially when you prefer running your browser maximised. This extension aims to solve that, view the options page to view the shortcuts. For the ultimate chrome tab controls, combine with • Reorder Tabs Shortcuts - https://chrome.google.com/webstore/detail/keyboard-shortcuts-to-reo/moigagbiaanpboaflikhdhgdfiifdodd?hl=en • Tab to Window/Popup - https://chrome.google.com/webstore/detail/tab-to-windowpopup-keyboa/adbkphmimfcaeonicpmamfddbbnphikh
확장 프로그램 기본 정보
이름 | Alt Tab Shortcuts |
ID | ebdcpdepkbefmgfdkdplcmhfkddagfon |
공식 URL | https://chromewebstore.google.com/detail/alt-tab-shortcuts/ebdcpdepkbefmgfdkdplcmhfkddagfon |
설명 | Speeds up tab management with simple shortcuts |
파일 크기 | 288 KB |
설치 횟수 | 144 |
현재 버전 | 1.2.4 |
최근 업데이트 | 2021-04-28 |
출시 날짜 | 2019-07-06 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | iamogbz |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://ogbizi.com/chrome-alt-tabs/ |
도움말 페이지 URL | https://github.com/iamogbz/chrome-alt-tabs/issues |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Alt Tab Shortcuts", "version": "1.2.4", "description": "Speeds up tab management with simple shortcuts", "icons": { "16": "icon.16.png", "32": "icon.32.png", "48": "icon.48.png", "128": "icon.128.png" }, "background": { "scripts": [ "background.js" ] }, "commands": { "tabs-move-out": { "suggested_key": { "default": "Shift+Alt+Up" }, "description": "Pop tabs out into new window" }, "tabs-move-back": { "suggested_key": { "default": "Shift+Alt+Down" }, "description": "Pop tabs back into last window" }, "tabs-move-next": { "suggested_key": { "default": "Shift+Alt+Right" }, "description": "Move tabs to the next\/new window" }, "tabs-move-prev": { "suggested_key": { "default": "Shift+Alt+Left" }, "description": "Move tabs to the previous window" } }, "options_ui": { "page": "options.html", "chrome_style": true }, "short_name": "AltTabs", "permissions": [ "tabs" ] } |