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文件

下载Tab Stack扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            }
        }
    }
}