Tab Stack

Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows

Tab Stack란 무엇입니까?

Tab Stack은(는) nemesisper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows"입니다.

확장 프로그램 스크린샷

screenshot

Tab Stack 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Mimic the function of Alt + Tab in Windows or Command + Tab in MacOS to manage tabs. 

- Use Alt + 1 (Option + 1 in MacOS) to open the extension. The extension shows the tab list according to the order they activated. So you can easily switch between most recently activated tabs by using shortcuts.

- While you are selecting tab you want to jump to, keep Alt (Option) down.

- Up/ Down arrow to select tab in tab list, hit Enter or just release Alt (Option) to jump to the tab you selected.

- If you decide to stay in current tab, simply use Alt + 1 (Option + 1) to close the extension.

2018.07.11 - Add scrolling function of key Q and W, same as up/down arrow key.                    

확장 프로그램 기본 정보

이름 Tab Stack Tab Stack
ID jipfnojdidlbelcajjonblnmmbcjnbpk
공식 URL https://chrome.google.com/webstore/detail/tab-stack/jipfnojdidlbelcajjonblnmmbcjnbpk
설명 Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows
파일 크기 429 KB
설치 횟수 36
현재 버전 1.0
최근 업데이트 2018-09-05
출시 날짜 2018-09-05
평점 1.00/5 총 2 개의 평점
개발자 nemesisper
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/yirunzhou/Tab-Stack
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Stack",
    "version": "1.0",
    "description": "Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/tab_stack_128.png"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+1"
            }
        }
    }
}