Close Unpinned Tabs

Close all unpinned tabs with a short cut "Alt + Shift + O"

Cos'è Close Unpinned Tabs?

Close Unpinned Tabs è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Close all unpinned tabs with a short cut "Alt + Shift + O"".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Close Unpinned Tabs

Scarica i file di estensione Close Unpinned Tabs 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

                        Allows you to set a shortcut to close all unpinned tabs and pin/unpin an existing tab from the current window. Alt+Shift+O is the default to close tabs Alt + Shift + P to pin/unpin a tab.                    

Informazioni di Base sull'Estensione

Nome Close Unpinned Tabs Close Unpinned Tabs
ID ajijmjelflcpkaapmddfoklcamplblpb
URL Ufficiale https://chromewebstore.google.com/detail/close-unpinned-tabs/ajijmjelflcpkaapmddfoklcamplblpb
Descrizione Close all unpinned tabs with a short cut "Alt + Shift + O"
Dimensione del File 293 KB
Conteggio Installazioni 115
Versione Corrente 0.2
Ultimo Aggiornamento 2019-09-05
Data di Pubblicazione 2019-09-05
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Unpinned Tabs",
    "version": "0.2",
    "description": "Close all unpinned tabs with a short cut \"Alt + Shift + O\"",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "broom.png",
            "32": "broom.png",
            "48": "broom.png",
            "128": "broom128.png"
        },
        "default_title": "Clutter"
    },
    "commands": {
        "toggle_pin": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "Toggle if the pin is tabbed"
        },
        "close_unpinned": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Close all tabs excepts pinned ones"
        }
    },
    "manifest_version": 2
}