Moly Tab Menu

Switch tabs more efficiently.

¿Qué es Moly Tab Menu?

Moly Tab Menu es una extensión de Chrome desarrollada por slaypni, y su función principal es "Switch tabs more efficiently.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Moly Tab Menu

Descarga archivos de extensión Moly Tab Menu 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

                        Moly Tab Menu enables you to look up opening tabs and jump into one of them effortlessly. You can navigate between tabs using keyboard shortcuts and/or mouse scroll.

It is quick to jump into a recently opened tab because tabs are arranged in the activated order by default. Other sort orders are also available for better navigation according to use cases. You can also type some characters to filter tabs by its name.

It not only offers the opening tabs view but also recently closed tabs view and page history view. These views enable you to find and open whatever tabs/pages efficiently.

All keyboard shortcuts are customizable in the options page.                    

Información Básica de la Extensión

Nombre Moly Tab Menu Moly Tab Menu
ID pniegmhajhkebcalmfalpjjhmgfipibc
URL Oficial https://chromewebstore.google.com/detail/moly-tab-menu/pniegmhajhkebcalmfalpjjhmgfipibc
Descripción Switch tabs more efficiently.
Tamaño del Archivo 69.26 KB
Cantidad de Instalaciones 334
Versión Actual 1.1.2
Última Actualización 2020-10-27
Fecha de Publicación 2020-03-08
Calificación 2.69/5 Total de 16 Calificaciones
Desarrollador slaypni
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/slaypni/moly-tabmenu2
URL de la Página de Ayuda https://twitter.com/slaypni
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Moly Tab Menu",
    "version": "1.1.2",
    "description": "Switch tabs more efficiently.",
    "icons": {
        "16": "icons\/16.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "styles\/content-light.css",
                "styles\/content-dark.css"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "permissions": [
        "tabs",
        "storage",
        "sessions",
        "history",
        "chrome:\/\/favicon\/"
    ]
}