Keyboard Shortcuts to Close Other/Right Tabs
Chrome extension adding shortcuts for closing and pinning tabs.
Keyboard Shortcuts to Close Other/Right Tabsคืออะไร?
Keyboard Shortcuts to Close Other/Right Tabs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michael Fester และคุณลักษณะหลักของมันคือ "Chrome extension adding shortcuts for closing and pinning tabs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Keyboard Shortcuts to Close Other/Right Tabs
ดาวน์โหลดไฟล์ส่วนขยาย Keyboard Shortcuts to Close Other/Right Tabs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The extension consists of three keyboard shortcuts:
* Alt-Shift-O: Close Other Tabs
* Alt-Shift-R: Close Tabs to the Right
* Alt-Shift-P: Pin Tab
Note: A separate extension, tabloid, adds the following shortcuts to Chrome
* Move Tab Right
* Move Tab Left
* Move Tab to First Position
* Move Tab to Last Position
Chrome extensions currently only allow for a maximum of four shortcuts, which is why they are not included in tabasco.
You can fetch tabloid here: https://chrome.google.com/webstore/detail/femidpfpildjfepkcaodpalpakgadjih ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | dkoadhojigekhckndaehenfbhcgfeepl |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/dkoadhojigekhckndaehenfbhcgfeepl |
| คำอธิบาย | Chrome extension adding shortcuts for closing and pinning tabs. |
| ขนาดไฟล์ | 4.03 KB |
| จำนวนการติดตั้ง | 20,000 |
| เวอร์ชันปัจจุบัน | 1.0.1 |
| อัปเดตครั้งล่าสุด | 2023-10-28 |
| วันที่เผยแพร่ | 2013-01-23 |
| คะแนน | 4.33/5 รวมทั้งหมด 72 คะแนน |
| ผู้พัฒนา | Michael Fester |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://michaelfester.com |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Keyboard Shortcuts to Close Other\/Right Tabs",
"version": "1.0.1",
"manifest_version": 3,
"description": "Chrome extension adding shortcuts for closing and pinning tabs.",
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs",
"activeTab",
"tabGroups"
],
"commands": {
"close-other-tabs": {
"suggested_key": {
"default": "Alt+Shift+O"
},
"description": "Close other Tabs"
},
"close-right-tabs": {
"suggested_key": {
"default": "Alt+Shift+R"
},
"description": "Close Tabs to the right"
},
"toggle-pin": {
"suggested_key": {
"default": "Alt+Shift+P"
},
"description": "Pin\/unpin Tab"
}
}
} | |