Most Recent Used Tab Stack

Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.

O que é Most Recent Used Tab Stack?

Most Recent Used Tab Stack é uma extensão do Chrome desenvolvida por brandon, e sua principal característica é "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Most Recent Used Tab Stack

Baixe arquivos de extensão Most Recent Used 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

                        This extension moves your most recently used (MRU) tab to the front or back. Allowing Ctrl+tab to work in most recently used order. 

This is an update to https://goo.gl/F0pGhZ to support the new api. Also works with pinned tabs.

1.5 - Simpler Code, fix to sometimes send the tab to the back.
1.4 - Fix to support chrome bug while tab.query is broken.
1.3 - Right to left support. 
1.2 - Removed more permissions. Now doesn't need anything additional to function.
1.1 - Working with multiple windows now. Removed some unneeded permissions.                    

Informações Básicas da Extensão

Nome Most Recent Used Tab Stack Most Recent Used Tab Stack
ID kbedhikfgjjlhibaoafccbkeeppnhage
URL Oficial https://chromewebstore.google.com/detail/most-recent-used-tab-stac/kbedhikfgjjlhibaoafccbkeeppnhage
Descrição Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.
Tamanho do Arquivo 15.78 KB
Contagem de Instalações 252
Versão Atual 1.5
Última Atualização 2021-06-04
Data de Publicação 2018-02-07
Classificação 4.92/5 Total de 12 Avaliações
Desenvolvedor brandon
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Most Recent Used Tab Stack",
    "version": "1.5",
    "description": "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.",
    "short_name": "MRU Tab Stack",
    "background": {
        "persistant": false,
        "scripts": [
            "bg.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ],
    "commands": {
        "next": {
            "suggested_key": {
                "default": "Ctrl+Space"
            },
            "description": "Same as Ctrl+Tab but won't sort until you let go."
        }
    }
}