QuickShift Redux - Rearrange Chrome Tabs
Easily and quickly rearrange tabs with keyboard shortcuts.
QuickShift Redux - Rearrange Chrome Tabsคืออะไร?
QuickShift Redux - Rearrange Chrome Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kenneth Lu และคุณลักษณะหลักของมันคือ "Easily and quickly rearrange tabs with keyboard shortcuts."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย QuickShift Redux - Rearrange Chrome Tabs
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| URL อย่างเป็นทางการ | 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"
}
}
}
} | |