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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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 Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| 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"
}
}
} | |