Tab and Tab Group Shortcuts
Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.
Tab and Tab Group Shortcutsคืออะไร?
Tab and Tab Group Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bmalehorn และคุณลักษณะหลักของมันคือ "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab and Tab Group Shortcuts
ดาวน์โหลดไฟล์ส่วนขยาย Tab and Tab Group Shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds multiple shortcuts to manage tabs: Opens a tab in the same group as the current tab. Mac: Command+Shift+Y Windows: Ctrl+Shift+Y Swap the tab to the left, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Swap the tab to the right, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Move focus to the left, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut. Move focus to the right, moving into and out of opened tab groups. Visit chrome://extensions/shortcuts to bind this shortcut.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | nnbnphmhdbcgnekonlgniafbpcpapkep |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tab-and-tab-group-shortcu/nnbnphmhdbcgnekonlgniafbpcpapkep |
คำอธิบาย | Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus. |
ขนาดไฟล์ | 6.83 KB |
จำนวนการติดตั้ง | 216 |
เวอร์ชันปัจจุบัน | 1.0.6 |
อัปเดตครั้งล่าสุด | 2023-10-08 |
วันที่เผยแพร่ | 2022-07-19 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | bmalehorn |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/bmalehorn/new-tab-in-tab-group |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab and Tab Group Shortcuts", "description": "Adds shortcuts for creating tabs, reorganizing tabs, and moving the focus.", "version": "1.0.6", "manifest_version": 3, "permissions": [ "tabs", "tabGroups" ], "background": { "service_worker": "background.js" }, "commands": { "swap-right": { "description": "Swap tab to the right" }, "swap-left": { "description": "Swap tab to the left" }, "focus-left-into-group": { "description": "Move focus left into tab group" }, "focus-right-into-group": { "description": "Move focus right into tab group" }, "new-tab-in-group": { "description": "Open New Tab in Group", "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" } } }, "icons": { "128": "icon.png" } } |