Tab Stack

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

Tab Stack là gì?

Tab Stack là một tiện ích mở rộng Chrome được phát triển bởi nemesisper, và tính năng chính của nó là "Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tab Stack

Tải xuống các tệp mở rộng Tab Stack dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tab Stack Tab Stack
ID jipfnojdidlbelcajjonblnmmbcjnbpk
URL Chính Thức https://chrome.google.com/webstore/detail/tab-stack/jipfnojdidlbelcajjonblnmmbcjnbpk
Mô tả Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows
Kích Thước Tệp 429 KB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-09-05
Ngày Phát Hành 2018-09-05
Đánh Giá 1.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển nemesisper
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/yirunzhou/Tab-Stack
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}