Previous Tab
Switch back to the previously active tab using the keyboard.
Previous Tab란 무엇입니까?
Previous Tab은(는) previoustab.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Switch back to the previously active tab using the keyboard."입니다.
확장 프로그램 스크린샷
Previous Tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Switch to the previously active tab (last tab) by pressing Ctrl+Q, or clicking the Previous Tab icon. You can change the keyboard shortcut by visiting chrome://extensions/shortcuts . Previous Tab does not require any permissions to install and use. Chrome does not allow any extensions to use Ctrl+Tab or Ctrl+` as keyboard shortcuts. The supported keys are Alt, Ctrl, Cmd along with: A-Z, 0-9, Comma, Period, Home, End, PageUp, PageDown, Space, Insert, Delete, Arrow keys (Up, Down, Left, Right) and the Media Keys (MediaNextTrack, MediaPlayPause, MediaPrevTrack, MediaStop). Donations are appreciated at donate.previoustab.com
확장 프로그램 기본 정보
이름 | Previous Tab |
ID | bjaniflnlhhofabpoamhnobeonjcjjpl |
공식 URL | https://chromewebstore.google.com/detail/previous-tab/bjaniflnlhhofabpoamhnobeonjcjjpl |
설명 | Switch back to the previously active tab using the keyboard. |
파일 크기 | 468 KB |
설치 횟수 | 10,000 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2022-11-12 |
출시 날짜 | 2020-02-28 |
평점 | 4.84/5 총 97 개의 평점 |
개발자 | previoustab.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Previous Tab", "description": "Switch back to the previously active tab using the keyboard.", "version": "1.0.2", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "commands": { "switch-to-previously-active-tab": { "description": "Switch back to the previously active tab", "suggested_key": { "default": "Ctrl+Q", "mac": "MacCtrl+Q" } } }, "browser_action": { "default_icon": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" } }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" } } |