Keyboard shortcuts to close Chrome tabs
Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones
Keyboard shortcuts to close Chrome tabsคืออะไร?
Keyboard shortcuts to close Chrome tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://diophung.com และคุณลักษณะหลักของมันคือ "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Keyboard shortcuts to close Chrome tabs
ดาวน์โหลดไฟล์ส่วนขยาย Keyboard shortcuts to close Chrome tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ever wish Chrome has the hotkeys to close tabs to the right, or to the left, or pin current tab? This extension will let you do it, and there are more. You can configure the hotkeys to: - Close tabs to the left. - Close tabs to the right. - Close other tabs. - Pin/unpin a tab. Source code available at : https://github.com/diophung/close-chrome-tabs Please provide your feedback to Twitter: @diophung or email : [email protected].
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Keyboard shortcuts to close Chrome tabs |
ID | fipfgiejfpcdacpjepkohdlnjonchnal |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/fipfgiejfpcdacpjepkohdlnjonchnal |
คำอธิบาย | Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones |
ขนาดไฟล์ | 293 KB |
จำนวนการติดตั้ง | 4,928 |
เวอร์ชันปัจจุบัน | 0.3.0 |
อัปเดตครั้งล่าสุด | 2022-02-07 |
วันที่เผยแพร่ | 2018-06-24 |
คะแนน | 4.64/5 รวมทั้งหมด 25 คะแนน |
ผู้พัฒนา | https://diophung.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/diophung/close-chrome-tabs |
URL หน้าช่วยเหลือ | https://diophung.com/chrome-tab-shortcut-privacy-policy/ |
URL หน้านโยบายความเป็นส่วนตัว | https://github.com/diophung/close-chrome-tabs/wiki/Privacy-Policy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "close-other-tabs-dp": { "description": "Close other tabs", "suggested_key": { "default": "Alt+Shift+W" } }, "close-left-tabs-dp": { "description": "Close tabs to the left", "suggested_key": { "default": "Alt+Shift+L" } }, "close-right-tabs-dp": { "description": "Close tabs to the right", "suggested_key": { "default": "Alt+Shift+R" } }, "toggle-pin-dp": { "description": "Pin\/unpin Tab", "suggested_key": { "default": "Alt+Shift+P" } } }, "description": "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left\/right\/other tabs or toggle pinned ones", "icons": { "128": "images\/tabs_128.png", "48": "images\/tabs_48.png" }, "manifest_version": 2, "name": "Keyboard shortcuts to close Chrome tabs", "short_name": "Shortcuts to close tabs", "options_page": "options.html", "permissions": [], "version": "0.3.0" } |