Keyboard Shortcuts to Close Other/Right Tabs

Chrome extension adding shortcuts for closing and pinning tabs.

Что такое Keyboard Shortcuts to Close Other/Right Tabs?

Keyboard Shortcuts to Close Other/Right Tabs - это расширение Chrome, разработанное Michael Fester, и его основная функция - "Chrome extension adding shortcuts for closing and pinning tabs.".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Keyboard Shortcuts to Close Other/Right Tabs

Скачайте файлы расширений Keyboard Shortcuts to Close Other/Right Tabs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Keyboard Shortcuts to Close Other/Right Tabs Keyboard Shortcuts to Close Other/Right Tabs
ID dkoadhojigekhckndaehenfbhcgfeepl
Официальный URL https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl
Описание Chrome extension adding shortcuts for closing and pinning tabs.
Размер файла 4.03 KB
Количество установок 20,000
Текущая Версия 1.0.1
Последнее Обновление 2023-10-28
Дата публикации 2013-01-23
Рейтинг 4.33/5 Всего 72 оценок
Разработчик Michael Fester
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://michaelfester.com
Поддерживаемые языки 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"
        }
    }
}