QuickShift Redux - Rearrange Chrome Tabs
Easily and quickly rearrange tabs with keyboard shortcuts.
QuickShift Redux - Rearrange Chrome Tabs là gì?
QuickShift Redux - Rearrange Chrome Tabs là một tiện ích mở rộng Chrome được phát triển bởi Kenneth Lu, và tính năng chính của nó là "Easily and quickly rearrange tabs with keyboard shortcuts.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng QuickShift Redux - Rearrange Chrome Tabs
Tải xuống các tệp mở rộng QuickShift Redux - Rearrange Chrome Tabs dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | QuickShift Redux - Rearrange Chrome Tabs |
ID | daiohbdbfnmpbolhbpbngdjdjcbclikm |
URL Chính Thức | https://chromewebstore.google.com/detail/quickshift-redux-rearrang/daiohbdbfnmpbolhbpbngdjdjcbclikm |
Mô tả | Easily and quickly rearrange tabs with keyboard shortcuts. |
Kích Thước Tệp | 597 KB |
Số Lần Cài Đặt | 192 |
Phiên Bản Hiện Tại | 1.3.0 |
Cập Nhật Lần Cuối | 2024-02-25 |
Ngày Phát Hành | 2019-04-25 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Kenneth Lu |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/luyangkenneth/quickshift-redux |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } } |