Chrommander - tab navigator

Use Chrommander's search box to quickly jump to any opened tab or bookmark.

¿Qué es Chrommander - tab navigator?

Chrommander - tab navigator es una extensión de Chrome desarrollada por Simon Soriano, y su función principal es "Use Chrommander's search box to quickly jump to any opened tab or bookmark.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Chrommander - tab navigator

Descarga archivos de extensión Chrommander - tab navigator 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

                        Use Chrommander's search box to quickly jump to any opened tab or bookmark.

Features:
- Press `Ctrl+P` in MacOS or `Ctrl+Shift+P` in the rest of operating systems, and you'll see a list with all the currently opened tabs.
- Move within the list of results using the up and down arrow keys or the mouse
- Type in the search box to filter the results
- Search for bookmarks by typing "b" at the beginning and then the name of the bookmark that you want to open
- Select the tab or bookmark that you want to open and press enter or click on it

https://github.com/simon0191/chrommander                    

Información Básica de la Extensión

Nombre Chrommander - tab navigator Chrommander - tab navigator
ID ebbmganccobhlpcbkmodhiclngkbkcci
URL Oficial https://chromewebstore.google.com/detail/chrommander-tab-navigator/ebbmganccobhlpcbkmodhiclngkbkcci
Descripción Use Chrommander's search box to quickly jump to any opened tab or bookmark.
Tamaño del Archivo 490 KB
Cantidad de Instalaciones 130
Versión Actual 0.0.2
Última Actualización 2018-08-19
Fecha de Publicación 2018-08-19
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador Simon Soriano
Tipo de Pago free
Sitio Web de la Extensión https://github.com/simon0191/chrommander
URL de la Página de Ayuda https://github.com/simon0191/chrommander/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrommander - tab navigator",
    "short_name": "Chrommander",
    "version": "0.0.2",
    "description": "Use Chrommander's search box to quickly jump to any opened tab or bookmark.",
    "author": "@simon0191",
    "browser_action": {
        "default_popup": "popup\/index.html"
    },
    "background": {
        "scripts": [
            "background\/bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "foreground\/bundle.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "bookmarks",
        "chrome:\/\/favicon\/"
    ],
    "commands": {
        "_execute_browser_action": {
            "description": "Open Chrommander",
            "suggested_key": {
                "windows": "Ctrl+Shift+P",
                "mac": "MacCtrl+P",
                "chromeos": "Ctrl+Shift+P",
                "linux": "Ctrl+Shift+P"
            }
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}