Switch tabs shortcuts
Adds custom shortcuts for switching tabs.
Switch tabs shortcutsคืออะไร?
Switch tabs shortcuts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yutaro Yoshii และคุณลักษณะหลักของมันคือ "Adds custom shortcuts for switching tabs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Switch tabs shortcuts
ดาวน์โหลดไฟล์ส่วนขยาย Switch tabs shortcuts ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds custom shortcuts for switching tabs. After installing, you will be able to customize your shortcuts through chrome://extensions/shortcuts The default key bindings are as follows: Jump to the previous open tab mac: "Command+Shift+Left" other platforms: "Ctrl+Shift+Left" Jump to the next open tab mac: "Command+Shift+Right" other platforms: "Ctrl+Shift+Right" Jump to the last open tab mac: "Command+Shift+Up" other platforms: "Ctrl+Shift+Up" Jump to the first open tab mac: "Command+Shift+Down" other platforms: "Ctrl+Shift+Down"
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Switch tabs shortcuts |
ID | fejclhnofpjonlkijaekjpoehpinhlab |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/switch-tabs-shortcuts/fejclhnofpjonlkijaekjpoehpinhlab |
คำอธิบาย | Adds custom shortcuts for switching tabs. |
ขนาดไฟล์ | 8.29 KB |
จำนวนการติดตั้ง | 255 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2023-10-09 |
วันที่เผยแพร่ | 2020-03-03 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Yutaro Yoshii |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://developer.chrome.com/docs/webstore/program-policies/privacy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Switch tabs shortcuts", "short_name": "Switch tabs", "version": "1.0", "description": "Adds custom shortcuts for switching tabs.", "author": "Yutaro Yoshii", "manifest_version": 2, "icons": { "16": "images\/icon_16.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs" ], "commands": { "tab_left": { "suggested_key": { "default": "Ctrl+Shift+Left", "mac": "Command+Shift+Left" }, "description": "Jump to the previous open tab" }, "tab_right": { "suggested_key": { "default": "Ctrl+Shift+Right", "mac": "Command+Shift+Right" }, "description": "Jump to the next open tab" }, "tab_first": { "suggested_key": { "default": "Ctrl+Shift+Up", "mac": "Command+Shift+Up" }, "description": "Jump to the last open tab" }, "tab_last": { "suggested_key": { "default": "Ctrl+Shift+Down", "mac": "Command+Shift+Down" }, "description": "Jump to the first open tab" } } } |