Keyboard Shortcuts to Close Other/Right Tabs

Chrome extension adding shortcuts for closing and pinning tabs.

Co to jest Keyboard Shortcuts to Close Other/Right Tabs?

Keyboard Shortcuts to Close Other/Right Tabs to rozszerzenie Chrome opracowane przez Michael Fester, a jego główną funkcją jest „Chrome extension adding shortcuts for closing and pinning tabs.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Keyboard Shortcuts to Close Other/Right Tabs

Pobierz pliki rozszerzeń Keyboard Shortcuts to Close Other/Right Tabs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Keyboard Shortcuts to Close Other/Right Tabs Keyboard Shortcuts to Close Other/Right Tabs
ID dkoadhojigekhckndaehenfbhcgfeepl
Oficjalny URL https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl
Opis Chrome extension adding shortcuts for closing and pinning tabs.
Rozmiar pliku 4.03 KB
Liczba instalacji 20,000
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2023-10-28
Data Publikacji 2013-01-23
Ocena 4.33/5 Łącznie 72 Oceny
Deweloper Michael Fester
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://michaelfester.com
Obsługiwane Języki 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"
        }
    }
}