Tab Deduper

An extension that allows the user to deduplicate tabs.

什麼是Tab Deduper?

Tab Deduper是由Trevor Siemens開發的Chrome擴展程式,該擴展的主要功能是“An extension that allows the user to deduplicate tabs.”。

擴展截圖

screenshot

下載Tab Deduper擴展crx文件

下載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 Tab Deduper
ID fpcohiaaphpfoneofdlabjnpipbnkplj
官方網址 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"
    ]
}