Show Tab List

Show all sites in the current page

O que é Show Tab List?

Show Tab List é uma extensão do Chrome desenvolvida por pinibalilihamelech, e sua principal característica é "Show all sites in the current page".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Show Tab List

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

                        Press Ctrl+Shift+Y to view a list of the sites used in the current page.                    

Informações Básicas da Extensão

Nome Show Tab List Show Tab List
ID pjpbfdjmmlnelgbkffopkgpggeeaildc
URL Oficial https://chromewebstore.google.com/detail/show-tab-list/pjpbfdjmmlnelgbkffopkgpggeeaildc
Descrição Show all sites in the current page
Tamanho do Arquivo 8.67 KB
Contagem de Instalações 14,454
Versão Atual 0.1
Última Atualização 2015-03-13
Data de Publicação 2015-03-13
Classificação 2.11/5 Total de 9 Avaliações
Desenvolvedor pinibalilihamelech
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Tab List",
    "description": "Show all sites in the current page",
    "version": "0.1",
    "manifest_version": 2,
    "icons": {
        "16": "resources\/images\/icon-16.png",
        "48": "resources\/images\/icon-48.png",
        "128": "resources\/images\/icon-128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs"
    ],
    "background": {
        "scripts": [
            "resources\/js\/myBackground.js"
        ]
    },
    "commands": {
        "toggle-tab-list": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Toggle tab list"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "resources\/js\/page.js"
            ]
        }
    ]
}