Tab Stack

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

What is Tab Stack?

Tab Stack is a Chrome extension developed by nemesisper, and its main feature is "Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows".

Extension Screenshots

screenshot

Download Tab Stack Extension CRX File

Download Tab Stack extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Tab Stack Tab Stack
ID jipfnojdidlbelcajjonblnmmbcjnbpk
Official URL https://chrome.google.com/webstore/detail/tab-stack/jipfnojdidlbelcajjonblnmmbcjnbpk
Description Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows
File Size 429 KB
Installation Count 36
Current Version 1.0
Last Updated 2018-09-05
Publish Date 2018-09-05
Rating 1.00/5 Total 2 Ratings
Developer nemesisper
Email [email protected]
Payment Type free
Extension Website https://github.com/yirunzhou/Tab-Stack
Supported Languages 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"
            }
        }
    }
}