Tab search

Search your tabs and switch using the keyboard

O que é Tab search?

Tab search é uma extensão do Chrome desenvolvida por robert.anderberg, e sua principal característica é "Search your tabs and switch using the keyboard".

Baixar o arquivo CRX da Extensão Tab search

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

                        Hit Ctrl-Y to search all titles, urls and content of all open tabs, select a tab with up/down arrow keys, and hit enter to switch.

What's New?
-----------


If you're switching to a tab in another window, bring that window to the front.                    

Informações Básicas da Extensão

Nome Tab search Tab search
ID kackhdbfodjglfgdmjkjmjmoohbgcagf
URL Oficial https://chrome.google.com/webstore/detail/tab-search/kackhdbfodjglfgdmjkjmjmoohbgcagf
Descrição Search your tabs and switch using the keyboard
Tamanho do Arquivo 138 KB
Contagem de Instalações 91
Versão Atual 1.0.2
Última Atualização 2014-01-28
Data de Publicação 2014-01-28
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor robert.anderberg
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab search",
    "description": "Search your tabs and switch using the keyboard",
    "version": "1.0.2",
    "permissions": [
        "tabs",
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Y"
            }
        }
    }
}