Close Duplicate Tab
Close tabs which are duplicated. Only tabs with exact URL matches are closed.
Close Duplicate Tabคืออะไร?
Close Duplicate Tab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย IdleDev และคุณลักษณะหลักของมันคือ "Close tabs which are duplicated. Only tabs with exact URL matches are closed."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Close Duplicate Tab
ดาวน์โหลดไฟล์ส่วนขยาย Close Duplicate Tab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ever run into situations where you have lots of tabs open and you realize you have some of them open multiple times? If then you felt the need to close duplicate instances of that tab, help is at hand! Close Duplicate Tab does exactly what its name says - it identifies URLs which are open in multiple tabs, and closes all instances retaining one. It also is smart enough to detect if you are on one of those duplicate tabs, and closes the other ones so you can continue doing what you are. Coming soon: keyboard shortcut, auto close, limit to current window, group top domains in single window etc. Suggest more features! v2.5 * NEW: Top domains listed on hovering over the extension icon. v2.4 * Pinned tabs will no longer be closed if they are duplicates. v2.3 * Now see titles for duplicate tabs, not long URLs * Special case handling for websites that "replace" tabs behind the scenes. Short version: more accurate duplicate tracking. v2.2 * Bug fix to handle browser restarts v2.0 ## MAJOR Upgrade!!! * Options page, with list of upcoming capabilties * NEW: Reorder (sort) pages by URL v1.8: * Lists open tab count, and duplicate tab count * List duplicate URLs, and their counts * Groundwork for options (coming soon!) v1.6: * Now identifies & closes duplicates across windows * More accessible colors for duplicate count badge
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Close Duplicate Tab |
ID | lccfnphpgnpeghoffocbacbkohbapinm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/close-duplicate-tab/lccfnphpgnpeghoffocbacbkohbapinm |
คำอธิบาย | Close tabs which are duplicated. Only tabs with exact URL matches are closed. |
ขนาดไฟล์ | 18.95 KB |
จำนวนการติดตั้ง | 23,348 |
เวอร์ชันปัจจุบัน | 2.5 |
อัปเดตครั้งล่าสุด | 2020-05-11 |
วันที่เผยแพร่ | 2020-05-11 |
คะแนน | 4.10/5 รวมทั้งหมด 59 คะแนน |
ผู้พัฒนา | IdleDev |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Close Duplicate Tab", "description": "Close tabs which are duplicated. Only tabs with exact URL matches are closed.", "version": "2.5", "background": { "scripts": [ "close_tabs.js" ] }, "options_page": "options.html", "permissions": [ "storage", "tabs" ], "browser_action": { "default_icon": "icon_128_gs.png", "default_title": "Close Duplicate Tabs" }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" } } |