Close All Tabs On Left

Closes all tabs on the left of current tab

Cos'è Close All Tabs On Left?

Close All Tabs On Left è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Closes all tabs on the left of current tab".

Scarica il file CRX dell'estensione Close All Tabs On Left

Scarica i file di estensione Close All Tabs On Left 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

                        A very simple extension that closes all tabs left of the current tab in the current window. You can also use the shortcut Alt+Shift+Q to close the tabs.                    

Informazioni di Base sull'Estensione

Nome Close All Tabs On Left Close All Tabs On Left
ID afmdjfefjcfmedhgbegphdjhfckifaij
URL Ufficiale https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij
Descrizione Closes all tabs on the left of current tab
Dimensione del File 6.72 KB
Conteggio Installazioni 1,286
Versione Corrente 1.2
Ultimo Aggiornamento 2018-04-20
Data di Pubblicazione 2018-04-20
Valutazione 5.00/5 Totale 8 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close All Tabs On Left",
    "description": "Closes all tabs on the left of current tab",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "commands": {
        "close-all-left-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+Q",
                "mac": "Alt+Shift+Q"
            },
            "description": "Close all tabs on the left of current tab"
        }
    },
    "permissions": [
        "tabs"
    ]
}