Tab Deduper

An extension that allows the user to deduplicate tabs.

Tab Deduper là gì?

Tab Deduper là một tiện ích mở rộng Chrome được phát triển bởi Trevor Siemens, và tính năng chính của nó là "An extension that allows the user to deduplicate tabs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tab Deduper

Tải xuống các tệp mở rộng Tab Deduper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tab Deduper Tab Deduper
ID fpcohiaaphpfoneofdlabjnpipbnkplj
URL Chính Thức https://chromewebstore.google.com/detail/tab-deduper/fpcohiaaphpfoneofdlabjnpipbnkplj
Mô tả An extension that allows the user to deduplicate tabs.
Kích Thước Tệp 26.73 KB
Số Lần Cài Đặt 1,259
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2024-01-14
Ngày Phát Hành 2018-07-18
Đánh Giá 4.67/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Trevor Siemens
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tsiemens/ChromeTabDeduper
URL Trang Trợ Giúp https://github.com/tsiemens/ChromeTabDeduper/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}