Manage Tabs by Domain
Close and gather same-domain tabs.
Manage Tabs by Domainคืออะไร?
Manage Tabs by Domain เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nicole White และคุณลักษณะหลักของมันคือ "Close and gather same-domain tabs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Manage Tabs by Domain
ดาวน์โหลดไฟล์ส่วนขยาย Manage Tabs by Domain ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Tabs with the same domain as the active tab can be closed with CMD + Shift + X or gathered around the active tab with CMD + Shift + A. All same-domain tabs can be gathered with CMD + Shift + L. Alternatively, tabs can be managed by clicking on the extension's button and selecting Close, Gather, or Gather All. You can edit the hotkeys that close or gather tabs at the bottom of chrome://extensions/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Manage Tabs by Domain |
ID | jgjhgpeaejjahlbcgijdibooomicdcfi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/manage-tabs-by-domain/jgjhgpeaejjahlbcgijdibooomicdcfi |
คำอธิบาย | Close and gather same-domain tabs. |
ขนาดไฟล์ | 1.08 MB |
จำนวนการติดตั้ง | 362 |
เวอร์ชันปัจจุบัน | 0.0.2 |
อัปเดตครั้งล่าสุด | 2017-06-19 |
วันที่เผยแพร่ | 2017-06-18 |
คะแนน | 4.11/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | Nicole White |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/nicolewhite/same-domain-tabs/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Manage Tabs by Domain", "short_name": "Manage Tabs", "description": "Close and gather same-domain tabs.", "version": "0.0.2", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "tabs", "commands" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "commands": { "gather-tabs": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" }, "description": "Gather same-domain tabs around active tab." }, "close-tabs": { "suggested_key": { "default": "Ctrl+Shift+X", "mac": "Command+Shift+X" }, "description": "Close same-domain tabs as active tab." }, "gather-tabs-all": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" }, "description": "Gather all same-domain tabs." } }, "browser_action": { "default_icon": "icons\/icon48.png", "default_popup": "popup.html" }, "manifest_version": 2 } |