QuickShift Redux - Rearrange Chrome Tabs
Easily and quickly rearrange tabs with keyboard shortcuts.
O que é QuickShift Redux - Rearrange Chrome Tabs?
QuickShift Redux - Rearrange Chrome Tabs é uma extensão do Chrome desenvolvida por Kenneth Lu, e sua principal característica é "Easily and quickly rearrange tabs with keyboard shortcuts.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão QuickShift Redux - Rearrange Chrome Tabs
Baixe arquivos de extensão QuickShift Redux - Rearrange Chrome Tabs no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | QuickShift Redux - Rearrange Chrome Tabs |
ID | daiohbdbfnmpbolhbpbngdjdjcbclikm |
URL Oficial | https://chromewebstore.google.com/detail/quickshift-redux-rearrang/daiohbdbfnmpbolhbpbngdjdjcbclikm |
Descrição | Easily and quickly rearrange tabs with keyboard shortcuts. |
Tamanho do Arquivo | 597 KB |
Contagem de Instalações | 192 |
Versão Atual | 1.3.0 |
Última Atualização | 2024-02-25 |
Data de Publicação | 2019-04-25 |
Classificação | 4.50/5 Total de 2 Avaliações |
Desenvolvedor | Kenneth Lu |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/luyangkenneth/quickshift-redux |
Idiomas Suportados | 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" } } } } |