QuickShift Redux - Rearrange Chrome Tabs
Easily and quickly rearrange tabs with keyboard shortcuts.
什麼是QuickShift Redux - Rearrange Chrome Tabs?
QuickShift Redux - Rearrange Chrome Tabs是由Kenneth Lu開發的Chrome擴展程式,該擴展的主要功能是“Easily and quickly rearrange tabs with keyboard shortcuts.”。
擴展截圖
下載QuickShift Redux - Rearrange Chrome Tabs擴展crx文件
下載QuickShift Redux - Rearrange Chrome Tabs擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | daiohbdbfnmpbolhbpbngdjdjcbclikm |
| 官方網址 | https://chromewebstore.google.com/detail/quickshift-redux-rearrang/daiohbdbfnmpbolhbpbngdjdjcbclikm |
| 簡介 | Easily and quickly rearrange tabs with keyboard shortcuts. |
| 檔案大小 | 597 KB |
| 安裝次數 | 192 |
| 目前版本 | 1.3.0 |
| 更新時間 | 2024-02-25 |
| 上架時間 | 2019-04-25 |
| 評分 | 4.50/5 共 2 次評分 |
| 開發者 | Kenneth Lu |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/luyangkenneth/quickshift-redux |
| 支援的語言 | 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"
}
}
}
} | |