Keyboard Shortcuts to Close Other/Right Tabs

Chrome extension adding shortcuts for closing and pinning tabs.

Cos'è Keyboard Shortcuts to Close Other/Right Tabs?

Keyboard Shortcuts to Close Other/Right Tabs è un'estensione di Chrome sviluppata da Michael Fester, e la sua funzione principale è "Chrome extension adding shortcuts for closing and pinning tabs.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Keyboard Shortcuts to Close Other/Right Tabs

Scarica i file di estensione Keyboard Shortcuts to Close Other/Right 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

                        The extension consists of three keyboard shortcuts:

* Alt-Shift-O: Close Other Tabs
* Alt-Shift-R: Close Tabs to the Right
* Alt-Shift-P: Pin Tab

Note: A separate extension, tabloid, adds the following shortcuts to Chrome

* Move Tab Right
* Move Tab Left
* Move Tab to First Position
* Move Tab to Last Position

Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabasco.

You can fetch tabloid here: https://chrome.google.com/webstore/detail/femidpfpildjfepkcaodpalpakgadjih                    

Informazioni di Base sull'Estensione

Nome Keyboard Shortcuts to Close Other/Right Tabs Keyboard Shortcuts to Close Other/Right Tabs
ID dkoadhojigekhckndaehenfbhcgfeepl
URL Ufficiale https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl
Descrizione Chrome extension adding shortcuts for closing and pinning tabs.
Dimensione del File 4.03 KB
Conteggio Installazioni 20,000
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-10-28
Data di Pubblicazione 2013-01-23
Valutazione 4.33/5 Totale 72 Valutazioni
Sviluppatore Michael Fester
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://michaelfester.com
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keyboard Shortcuts to Close Other\/Right Tabs",
    "version": "1.0.1",
    "manifest_version": 3,
    "description": "Chrome extension adding shortcuts for closing and pinning tabs.",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "tabGroups"
    ],
    "commands": {
        "close-other-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Close other Tabs"
        },
        "close-right-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+R"
            },
            "description": "Close Tabs to the right"
        },
        "toggle-pin": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "Pin\/unpin Tab"
        }
    }
}