Tab Stack

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

O que é Tab Stack?

Tab Stack é uma extensão do Chrome desenvolvida por nemesisper, e sua principal característica é "Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Tab Stack

Baixe arquivos de extensão Tab Stack no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Tab Stack Tab Stack
ID jipfnojdidlbelcajjonblnmmbcjnbpk
URL Oficial https://chrome.google.com/webstore/detail/tab-stack/jipfnojdidlbelcajjonblnmmbcjnbpk
Descrição Quickly switch between recent tabs in the activated order, like ALT + TAB in Windows
Tamanho do Arquivo 429 KB
Contagem de Instalações 36
Versão Atual 1.0
Última Atualização 2018-09-05
Data de Publicação 2018-09-05
Classificação 1.00/5 Total de 2 Avaliações
Desenvolvedor nemesisper
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/yirunzhou/Tab-Stack
Idiomas Suportados 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"
            }
        }
    }
}