Open Last Tab
Cycle through last used Chrome tabs using keyboard shortcut (Alt+Q).
Open Last Tab란 무엇입니까?
Open Last Tab은(는) https://mydiv.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Cycle through last used Chrome tabs using keyboard shortcut (Alt+Q)."입니다.
확장 프로그램 스크린샷
Open Last Tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Helps jump between last used tabs by keyboard shortcut in Chrome, Yandex Browser and other Chromium-based browsers. Default shortcut: Alt + Q Based on clut-chrome-extension (https://github.com/harshayburadkar/clut-chrome-extension / MIT License), but without any analitycs and third-party code. Just core functionality. Open source and needs only "tabs" permissions. This extension tries to allow you switch between open tabs in a Most Recently Used fashion. It remembers the order in which you switched tabs (made a tab active) and it updates its records so that you can switch to the recently used ones quickly. Note: Sometimes after updating the extension the keyboard shortcut settings get reset. Hence you might want to set the desired key board shortcuts again in the keyboard shortcut settings in the Chrome Extensions page. The project is made open source in GitHub: https://github.com/xordiv/open-last-tab-chrome [Default Keys:] *ALT + Q*: Quick switch *ALT + S*: Normal switch *ALT + Shift + S*: Normal switch (in opposite direction) *Keys can be changed in keyboard shortcut settings on the Chrome extensions page.
확장 프로그램 기본 정보
이름 | Open Last Tab |
ID | naolnccddjabbhmjogiejjgocjnglmge |
공식 URL | https://chromewebstore.google.com/detail/open-last-tab/naolnccddjabbhmjogiejjgocjnglmge |
설명 | Cycle through last used Chrome tabs using keyboard shortcut (Alt+Q). |
파일 크기 | 26.35 KB |
설치 횟수 | 2,454 |
현재 버전 | 1.0 |
최근 업데이트 | 2019-02-26 |
출시 날짜 | 2019-02-25 |
평점 | 4.95/5 총 20 개의 평점 |
개발자 | https://mydiv.org |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/xordiv/open-last-tab-chrome |
지원되는 언어 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "default_locale": "en", "name": "Open Last Tab", "short_name": "OLT", "description": "__MSG_description__", "version": "1.0", "permissions": [ "tabs" ], "content_security_policy": "script-src 'self'; object-src 'self'", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "commands": { "alt_switch_fast": { "suggested_key": { "default": "Alt+Q", "mac": "Alt+Q" }, "description": "__MSG_alt_switch_fast_description__" }, "alt_switch_slow_backward": { "suggested_key": { "default": "Alt+S", "mac": "Alt+S" }, "description": "__MSG_alt_switch_slow_backward_description__" }, "alt_switch_slow_forward": { "suggested_key": { "default": "Alt+Shift+S", "mac": "Alt+Shift+S" }, "description": "__MSG_alt_switch_slow_forward_description__" } }, "browser_action": { "default_title": "__MSG_title__", "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } } |