Close All Tabs On Left
Closes all tabs on the left of current tab
Close All Tabs On Leftคืออะไร?
Close All Tabs On Left เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Closes all tabs on the left of current tab"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Close All Tabs On Left
ดาวน์โหลดไฟล์ส่วนขยาย Close All Tabs On Left ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A very simple extension that closes all tabs left of the current tab in the current window. You can also use the shortcut Alt+Shift+Q to close the tabs.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Close All Tabs On Left |
ID | afmdjfefjcfmedhgbegphdjhfckifaij |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij |
คำอธิบาย | Closes all tabs on the left of current tab |
ขนาดไฟล์ | 6.72 KB |
จำนวนการติดตั้ง | 1,286 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2018-04-20 |
วันที่เผยแพร่ | 2018-04-20 |
คะแนน | 5.00/5 รวมทั้งหมด 8 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Close All Tabs On Left", "description": "Closes all tabs on the left of current tab", "version": "1.2", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "icon.png" }, "commands": { "close-all-left-tabs": { "suggested_key": { "default": "Alt+Shift+Q", "mac": "Alt+Shift+Q" }, "description": "Close all tabs on the left of current tab" } }, "permissions": [ "tabs" ] } |