Tab Mover (Move tabs with keyboard shortcuts)
Move your tabs around with keyboard shortcuts
Tab Mover (Move tabs with keyboard shortcuts)คืออะไร?
Tab Mover (Move tabs with keyboard shortcuts) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dennis Paagman และคุณลักษณะหลักของมันคือ "Move your tabs around with keyboard shortcuts"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Mover (Move tabs with keyboard shortcuts)
ดาวน์โหลดไฟล์ส่วนขยาย Tab Mover (Move tabs with keyboard shortcuts) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Move your tabs around with keyboard shortcuts. Installation instructions: Install the extension directly from the Chrome Web Store Scroll to the bottom of your 'Extensions' preferences Click 'Keyboard Shortcuts' at the bottom right Set your keyboard shortcuts, I use Cmd-Shift-O and Cmd-Shift-P because they sit nicely close to tab switching shortcuts Cmd-Shift-[ and Cmd-Shift-]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | dbkbmgieiomjnpimkilnkkcjioecdmio |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tab-mover-move-tabs-with/dbkbmgieiomjnpimkilnkkcjioecdmio |
คำอธิบาย | Move your tabs around with keyboard shortcuts |
ขนาดไฟล์ | 19.11 KB |
จำนวนการติดตั้ง | 46 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2016-11-25 |
วันที่เผยแพร่ | 2016-11-25 |
คะแนน | 3.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Dennis Paagman |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Mover (Move tabs with keyboard shortcuts)", "short_name": "Tab Mover", "description": "Move your tabs around with keyboard shortcuts", "version": "1.2", "author": "Dennis Paagman", "icons": { "128": "icon-128.png", "64": "icon-64.png" }, "background": { "scripts": [ "tabMover.js" ] }, "permissions": [ "activeTab" ], "commands": { "move-tab-left": { "suggested_key": { "default": "Ctrl+Shift+O", "mac": "Command+Shift+O" }, "description": "Move current tab to the left" }, "move-tab-right": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" }, "description": "Move current tab to the right" } } } |