Keyboard Shortcuts to Close Other/Right Tabs

Chrome extension adding shortcuts for closing and pinning tabs.

Qu'est-ce que Keyboard Shortcuts to Close Other/Right Tabs ?

Keyboard Shortcuts to Close Other/Right Tabs est une extension Chrome développée par Michael Fester, et sa fonction principale est "Chrome extension adding shortcuts for closing and pinning tabs.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Keyboard Shortcuts to Close Other/Right Tabs

Téléchargez les fichiers d'extension Keyboard Shortcuts to Close Other/Right Tabs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Keyboard Shortcuts to Close Other/Right Tabs Keyboard Shortcuts to Close Other/Right Tabs
ID dkoadhojigekhckndaehenfbhcgfeepl
URL Officiel https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl
Description Chrome extension adding shortcuts for closing and pinning tabs.
Taille du Fichier 4.03 KB
Nombre d'Installations 20,000
Version Actuelle 1.0.1
Dernière Mise à Jour 2023-10-28
Date de Publication 2013-01-23
Évaluation 4.33/5 Total 72 Évaluations
Développeur Michael Fester
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://michaelfester.com
Langues Prises en Charge 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"
        }
    }
}