Tab Keys
Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab.
Tab Keysคืออะไร?
Tab Keys เป็นส่วนขยายของ Chrome ที่พัฒนาโดย thekiteeatingtree และคุณลักษณะหลักของมันคือ "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Keys
ดาวน์โหลดไฟล์ส่วนขยาย Tab Keys ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Allows you to set keyboard shortcuts for selecting the next or previous tab. Also offers the ability to add a shortcut to pin tabs. The default shortcuts for next/prev tab are Ctrl+Right/Left. To edit the shortcuts click on the extension icon and hit 'Manage extensions'. Scroll to the bottom of the page and click 'Keyboard shortcuts'. This extensions shortcuts will be editable under the 'Tab Keys' header.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | fmmkbjckdjobofhoikpldcahemfccffo |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/tab-keys/fmmkbjckdjobofhoikpldcahemfccffo |
คำอธิบาย | Allows you to set keyboard shortcuts for certain tab actions such as selecting the next/prev tab. |
ขนาดไฟล์ | 4.5 KB |
จำนวนการติดตั้ง | 21 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2017-07-27 |
วันที่เผยแพร่ | 2017-07-27 |
ผู้พัฒนา | thekiteeatingtree |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/TheKiteEatingTree/TabKeys |
URL หน้าช่วยเหลือ | https://github.com/TheKiteEatingTree/TabKeys/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Keys", "description": "Allows you to set keyboard shortcuts for certain tab actions such as selecting the next\/prev tab.", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "next-tab": { "suggested_key": { "default": "Ctrl+Right" }, "description": "Select the next tab" }, "prev-tab": { "suggested_key": { "default": "Ctrl+Left" }, "description": "Select the previous tab" }, "pin-tab": { "suggested_key": { "default": "Ctrl+Shift+P" }, "description": "Pin the current tab" } } } |