Tab Manager Shortcuts
Manage your chrome tabs with keyboard shortcuts.
Tab Manager Shortcutsคืออะไร?
Tab Manager Shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Daniel Pham และคุณลักษณะหลักของมันคือ "Manage your chrome tabs with keyboard shortcuts."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Manager Shortcuts
ดาวน์โหลดไฟล์ส่วนขยาย Tab Manager Shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Reorder and manage the chrome tabs with customizable keyboard shortcuts As of v2.0 keybindings must be set through the "Keyboard Shortcut" menu at the bottom right in the Chrome extension settings as defaults are not longer set (see https://bugs.chromium.org/p/chromium/issues/detail?id=167419). Source Code: https://github.com/danhp/tab-manager-chrome
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Tab Manager Shortcuts |
ID | oofoadncochbkbpebpbndghocapamchi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tab-manager-shortcuts/oofoadncochbkbpebpbndghocapamchi |
คำอธิบาย | Manage your chrome tabs with keyboard shortcuts. |
ขนาดไฟล์ | 21.21 KB |
จำนวนการติดตั้ง | 314 |
เวอร์ชันปัจจุบัน | 2.0.0 |
อัปเดตครั้งล่าสุด | 2016-12-27 |
วันที่เผยแพร่ | 2016-12-27 |
คะแนน | 3.36/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | Daniel Pham |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/danhp/tab-manager-chrome |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tab Manager Shortcuts", "version": "2.0.0", "description": "Manage your chrome tabs with keyboard shortcuts.", "homepage_url": "https:\/\/phamdaniel.github.io", "icons": { "16": "imgs\/16.png", "48": "imgs\/48.png", "128": "imgs\/128.png" }, "background": { "persisten": false, "scripts": [ "background.js" ] }, "commands": { "tab_manager_pin_current": { "description": "Pin or unpin current tab." }, "tab_manager_unpin_all": { "description": "Unpin all tabs in current window" }, "tab_manager_move_left": { "description": "Move selected tab left" }, "tab_manager_move_right": { "description": "Move selected tab right" }, "tab_manager_browse_left": { "description": "Switch\/browse tab left" }, "tab_manager_browse_right": { "description": "Switch\/browse tab right" } } } |