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
官方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"
    ]
}