QuickShift Redux - Rearrange Chrome Tabs
Easily and quickly rearrange tabs with keyboard shortcuts.
Cos'è QuickShift Redux - Rearrange Chrome Tabs?
QuickShift Redux - Rearrange Chrome Tabs è un'estensione di Chrome sviluppata da Kenneth Lu, e la sua funzione principale è "Easily and quickly rearrange tabs with keyboard shortcuts.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione QuickShift Redux - Rearrange Chrome Tabs
Scarica i file di estensione QuickShift Redux - Rearrange Chrome Tabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
QuickShift Redux is a Chrome extension that lets you easily and quickly rearrange tabs with keyboard shortcuts.
- Move tabs to the left or right within the same window
- Undock tabs to a new window
- Move tabs between windows
To customize your keyboard shortcuts, visit chrome://extensions/shortcuts and look for QuickShift Redux.
Check out the website for more information:
https://github.com/luyangkenneth/quickshift-redux Informazioni di Base sull'Estensione
| Nome | |
| ID | daiohbdbfnmpbolhbpbngdjdjcbclikm |
| URL Ufficiale | https://chromewebstore.google.com/detail/quickshift-redux-rearrang/daiohbdbfnmpbolhbpbngdjdjcbclikm |
| Descrizione | Easily and quickly rearrange tabs with keyboard shortcuts. |
| Dimensione del File | 597 KB |
| Conteggio Installazioni | 192 |
| Versione Corrente | 1.3.0 |
| Ultimo Aggiornamento | 2024-02-25 |
| Data di Pubblicazione | 2019-04-25 |
| Valutazione | 4.50/5 Totale 2 Valutazioni |
| Sviluppatore | Kenneth Lu |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/luyangkenneth/quickshift-redux |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "QuickShift Redux - Rearrange Chrome Tabs",
"short_name": "QuickShift Redux",
"description": "Easily and quickly rearrange tabs with keyboard shortcuts.",
"version": "1.3.0",
"author": "Kenneth Lu",
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"commands": {
"move-tabs-left": {
"description": "Move tabs to the left",
"suggested_key": {
"default": "Ctrl+Shift+Left",
"mac": "MacCtrl+Shift+Left"
}
},
"move-tabs-right": {
"description": "Move tabs to the right",
"suggested_key": {
"default": "Ctrl+Shift+Right",
"mac": "MacCtrl+Shift+Right"
}
},
"undock-tabs-to-new-window": {
"description": "Undock tabs to a new window",
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "MacCtrl+Shift+U"
}
},
"move-tabs-between-windows": {
"description": "Move tabs between windows",
"suggested_key": {
"default": "Ctrl+Shift+M",
"mac": "MacCtrl+Shift+M"
}
}
}
} | |