Last Tab

Changes back to the last tab you were on. Useful when you have cluttered tabs and click on a different tab and forgot which tab you…

O que é Last Tab?

Last Tab é uma extensão do Chrome desenvolvida por SnowDonut, e sua principal característica é "Changes back to the last tab you were on. Useful when you have cluttered tabs and click on a different tab and forgot which tab you…".

Baixar o arquivo CRX da Extensão Last Tab

Baixe arquivos de extensão Last Tab 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

                        Changes back to the last tab you were on. Useful when you have cluttered tabs and click on a different tab and forgot which tab you were just working on. Can assign a shortcut to it to make it easily accessible.                    

Informações Básicas da Extensão

Nome Last Tab Last Tab
ID ahjejhiehlhdhcgpifiappdhdjhbhcpf
URL Oficial https://chromewebstore.google.com/detail/last-tab/ahjejhiehlhdhcgpifiappdhdjhbhcpf
Descrição Changes back to the last tab you were on. Useful when you have cluttered tabs and click on a different tab and forgot which tab you…
Tamanho do Arquivo 81.62 KB
Contagem de Instalações 79
Versão Atual 0.1
Última Atualização 2016-10-26
Data de Publicação 2016-10-26
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor SnowDonut
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Last Tab",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.1.1.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ]
}