Chrome tab explorer

Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.

¿Qué es Chrome tab explorer?

Chrome tab explorer es una extensión de Chrome desarrollada por https://sites.google.com/site/fujundu, y su función principal es "Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Chrome tab explorer

Descarga archivos de extensión Chrome tab explorer 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

                        Having too many tabs and windows opened in your Chrome browser and having a hard time to keep track of which is which?

This extension lets you search through the tabs using keywords in the title and url of the page.  It also shows tab count.

"Bookmark all" will bookmark all tabs in a directory under "Other Bookmarks" of your bookmark folder.

It can be called out by "Alt + T".                    

Información Básica de la Extensión

Nombre Chrome tab explorer Chrome tab explorer
ID cjfnaklodefmmoikdpdaagkhbjijlpif
URL Oficial https://chromewebstore.google.com/detail/chrome-tab-explorer/cjfnaklodefmmoikdpdaagkhbjijlpif
Descripción Navigate through the tabs by searching keywords in the page title or url. Also shows the tab count.
Tamaño del Archivo 10.11 KB
Cantidad de Instalaciones 190
Versión Actual 0.4
Última Actualización 2017-12-22
Fecha de Publicación 2017-12-22
Desarrollador https://sites.google.com/site/fujundu
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/fjdu/tabExplorer
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome tab explorer",
    "short_name": "Tab explorer",
    "description": "Navigate through the tabs by searching keywords in the page title or url.  Also shows the tab count.",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Find tabs by searching keywords in the title or url.  Shortcut: Alt+T."
    },
    "permissions": [
        "tabs",
        "storage",
        "bookmarks",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "popup.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+T",
                "mac": "Alt+T",
                "chromeos": "Alt+T",
                "linux": "Alt+T"
            }
        }
    }
}