Switch Tab Shortcut
Customize chrome shortcut to switch tabs
Switch Tab Shortcutคืออะไร?
Switch Tab Shortcut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Stanley Guevara และคุณลักษณะหลักของมันคือ "Customize chrome shortcut to switch tabs"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Switch Tab Shortcut
ดาวน์โหลดไฟล์ส่วนขยาย Switch Tab Shortcut ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simple extension for switching to next/previous tab. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Switch Tab Shortcut |
ID | pfeobfgjcmcpgkodpodibnggeanmoddk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/switch-tab-shortcut/pfeobfgjcmcpgkodpodibnggeanmoddk |
คำอธิบาย | Customize chrome shortcut to switch tabs |
ขนาดไฟล์ | 3.37 KB |
จำนวนการติดตั้ง | 27 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2016-10-16 |
วันที่เผยแพร่ | 2016-10-16 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Stanley Guevara |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
URL หน้าช่วยเหลือ | https://github.com/stanleyguevara/chrome-switch-tab-shortcut |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Switch Tab Shortcut", "permissions": [ "tabs" ], "version": "1.0", "description": "Customize chrome shortcut to switch tabs", "commands": { "next-tab": { "suggested_key": { "default": "Ctrl+Right", "mac": "Command+Right" }, "description": "Next tab" }, "prev-tab": { "suggested_key": { "default": "Ctrl+Left", "mac": "Command+Left" }, "description": "Prev tab" } }, "background": { "scripts": [ "main.js" ], "persistent": false } } |