Duplicate Tab Helper

Prevent duplicate tabs effortlessly.

¿Qué es Duplicate Tab Helper?

Duplicate Tab Helper es una extensión de Chrome desarrollada por https://justinreinhart.com, y su función principal es "Prevent duplicate tabs effortlessly.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Duplicate Tab Helper

Descarga archivos de extensión Duplicate Tab Helper en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Duplicate Tab Helper prevents the opening of duplicate URLs at the moment new tabs are opened. If an exact duplicate is found, the newer tab will be replaced with the existing tab as seamlessly as possible. The effect is so subtle you may not even notice it happening. Duplicate Tab Helper is FANTASTIC for doing research and quietly makes your browsing experience more enjoyable.

Duplicate Tab Helper is 100% sadness free. Unlike other extensions, great care is taken to make sure that when a duplicate is detected and discarded that it doesn't contain unsaved information. There is literally zero instances where this extension discards an old tab that you might have been using (unless you change your preferences.) Sometimes this means a few duplicates are ignored under specific circumstances. In cases of uncertainty, caution is favored over cleanup.

Tips:
* You can still create a duplicate. Right-click my icon and select 'Duplicate'. Additionally, you can still open duplicate URLs in new windows. Shift-clicking a link should do this.

* Duplicate Tab Helper is not intended for web developers who frequently need new tabs to replace the old tabs each time they make a change. I love you guys and gals but this extension will drive you crazy. :)

Best,
Justin

*** RELEASE NOTES ***
2019-07-05 1.4.4 Fixed: Duplicates are no longer matched between incognito and non-incognito ecosystems. This only became an issue when the "all windows" search feature was introduced in 1.4.2.

1.4.3 Tightened up duplicate disposal to only dispose of duplicate after active tab has been set. This is to (hopefully) address a rare bug when opening new blank tabs where focus was not properly put on the remaining tab.

1.4.2 Added option to search all windows for duplicates. No longer checks for duplicates in pinned tabs or in non-"normal" windows such as "popup", "panel", "app", or "devtools". If catching duplicates in these window types is desired please send an email and let me know some specifics.

1.4.1 Under default settings, instead of ignoring "navigation duplicates", duplicates are pulled forward to the same position as the active tab, but no tabs are removed.

1.4.0 Customization options added for how to deal with "navigation duplicates"

2019-06-17 Update 1.3.9: Can now detect duplicate URLs with a hash (#) character in them. Also if you open a blank tab and happen to type a URL that is already open into a BLANK TAB then the duplicate will be matched and handled.  

2019-06-16 Update 1.3.7: Disabled notifications. On Windows 10 they are put into a notification center and must be manually dismissed. That's way too much clutter, so I disabled them. Thanks for trying them out.

2019-06-16 Update 1.3.6: Support added for bounced URLs! But only if the tab was opened in the background. I think this is a nice compromise to keep the extension lightweight but still very effective.

2019-06-15 Update: Right-click menu has a 'Duplicate' option in case user really does want a duplicate.                    

Información Básica de la Extensión

Nombre Duplicate Tab Helper Duplicate Tab Helper
ID oaceoebbkmkgfjhmngdinoclnionlgoh
URL Oficial https://chromewebstore.google.com/detail/duplicate-tab-helper/oaceoebbkmkgfjhmngdinoclnionlgoh
Descripción Prevent duplicate tabs effortlessly.
Tamaño del Archivo 268 KB
Cantidad de Instalaciones 2,445
Versión Actual 1.4.4.1
Última Actualización 2019-07-06
Fecha de Publicación 2019-07-05
Calificación 3.52/5 Total de 44 Calificaciones
Desarrollador https://justinreinhart.com
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duplicate Tab Helper",
    "version": "1.4.4.1",
    "manifest_version": 2,
    "icons": {
        "19": "img\/dth-icon-19.png",
        "48": "img\/dth-icon-48.png",
        "128": "img\/dth-icon-128.png"
    },
    "description": "Prevent duplicate tabs effortlessly.",
    "options_page": "options.html",
    "browser_action": {
        "default_title": "Duplicate Tab Helper",
        "default_icon": "img\/dth-icon-128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "img\/*",
        "css\/*",
        "js\/*"
    ],
    "background": {
        "scripts": [
            "js\/common.js",
            "js\/background.js",
            "js\/ui.js"
        ]
    }
}