Keyboard Shortcuts to Close Other/Right Tabs
Chrome extension adding shortcuts for closing and pinning tabs.
Was ist Keyboard Shortcuts to Close Other/Right Tabs?
Keyboard Shortcuts to Close Other/Right Tabs ist eine Chrome-Erweiterung, die von Michael Fester entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension adding shortcuts for closing and pinning tabs.".
Erweiterungsscreenshots
Keyboard Shortcuts to Close Other/Right Tabs-Erweiterungs-CRX-Datei herunterladen
Laden Sie Keyboard Shortcuts to Close Other/Right Tabs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Keyboard Shortcuts to Close Other/Right Tabs |
ID | dkoadhojigekhckndaehenfbhcgfeepl |
Offizielle URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl |
Beschreibung | Chrome extension adding shortcuts for closing and pinning tabs. |
Dateigröße | 4.03 KB |
Installationsanzahl | 20,000 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2023-10-28 |
Veröffentlichungsdatum | 2013-01-23 |
Bewertung | 4.33/5 Insgesamt 72 Bewertungen |
Entwickler | Michael Fester |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://michaelfester.com |
Unterstützte Sprachen | 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" } } } |