Tab Deduper
An extension that allows the user to deduplicate tabs.
Tab Deduperคืออะไร?
Tab Deduper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Trevor Siemens และคุณลักษณะหลักของมันคือ "An extension that allows the user to deduplicate tabs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Deduper
ดาวน์โหลดไฟล์ส่วนขยาย Tab Deduper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Tab Deduper is an extension to find and remove duplicate Chrome tabs. Unlike other currently available extensions which dedup tabs, Tab Deduper differentiates itself in the following ways: - Duplicate tabs are not automatically closed. A list of duplicated tabs are presented, allowing for precise control over which tab gets closed. - Use of text OR regular expression based settings to control how tabs are compared, including use of title, fragment, and doing sed-like regex replacements on URLs. This last feature is very useful if you use other extensions which modify your tab URLs.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Tab Deduper |
ID | fpcohiaaphpfoneofdlabjnpipbnkplj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tab-deduper/fpcohiaaphpfoneofdlabjnpipbnkplj |
คำอธิบาย | An extension that allows the user to deduplicate tabs. |
ขนาดไฟล์ | 26.73 KB |
จำนวนการติดตั้ง | 1,259 |
เวอร์ชันปัจจุบัน | 1.2.1 |
อัปเดตครั้งล่าสุด | 2024-01-14 |
วันที่เผยแพร่ | 2018-07-18 |
คะแนน | 4.67/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | Trevor Siemens |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/tsiemens/ChromeTabDeduper |
URL หน้าช่วยเหลือ | https://github.com/tsiemens/ChromeTabDeduper/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tab Deduper", "description": "An extension that allows the user to deduplicate tabs.", "version": "1.2.1", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "eventPage.js" }, "options_page": "options.html", "permissions": [ "tabs", "activeTab", "storage", "contextMenus" ] } |