Tab search

Search your tabs and switch using the keyboard

¿Qué es Tab search?

Tab search es una extensión de Chrome desarrollada por robert.anderberg, y su función principal es "Search your tabs and switch using the keyboard".

Descargar Archivo CRX de la Extensión Tab search

Descarga archivos de extensión Tab search en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Tab search Tab search
ID kackhdbfodjglfgdmjkjmjmoohbgcagf
URL Oficial https://chrome.google.com/webstore/detail/tab-search/kackhdbfodjglfgdmjkjmjmoohbgcagf
Descripción Search your tabs and switch using the keyboard
Tamaño del Archivo 138 KB
Cantidad de Instalaciones 91
Versión Actual 1.0.2
Última Actualización 2014-01-28
Fecha de Publicación 2014-01-28
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador robert.anderberg
Tipo de Pago free
Idiomas Soportados 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"
            }
        }
    }
}