Tab Menu

A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.

Cos'è Tab Menu?

Tab Menu è un'estensione di Chrome sviluppata da Ye, e la sua funzione principale è "A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Tab Menu

Scarica i file di estensione Tab Menu in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Tab Menu is a minimalist tab manager for Chrome. It enables you to search, switch, rearrange, and close tabs from the toolbar menu. It supports both mouse operations as well as keyboard operations.

This extension was originally created by Frank Yan, who stopped maintaining it around mid 2013. I recovered it from my installation and maintain it on GitHub, for the sake of those who love it.                    

Informazioni di Base sull'Estensione

Nome Tab Menu Tab Menu
ID hjeifjagcmihmdcmnfjelgdgpibefmfc
URL Ufficiale https://chromewebstore.google.com/detail/tab-menu/hjeifjagcmihmdcmnfjelgdgpibefmfc
Descrizione A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.
Dimensione del File 61.54 KB
Conteggio Installazioni 4,682
Versione Corrente 9.0.3
Ultimo Aggiornamento 2018-04-28
Data di Pubblicazione 2018-04-28
Valutazione 4.60/5 Totale 47 Valutazioni
Sviluppatore Ye
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "manifest_version": 2,
    "name": "Tab Menu",
    "description": "A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.",
    "version": "9.0.3",
    "browser_action": {
        "default_icon": {
            "16": "16.png",
            "32": "35.png",
            "48": "48.png",
            "128": "128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "icons": {
        "16": "16.png",
        "32": "35.png",
        "48": "48.png",
        "128": "128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "contextMenus"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}