No Dupe Tabs

Swap to preexisting tab if url is already opened.

¿Qué es No Dupe Tabs?

No Dupe Tabs es una extensión de Chrome desarrollada por J Wang, y su función principal es "Swap to preexisting tab if url is already opened.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión No Dupe Tabs

Descarga archivos de extensión No Dupe Tabs 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

                        If you open a URL that already exists in one of your tabs, this simple extension will close the tab and switch to the preexisting tab! If you rarely reuse tabs, use this extension to avoid a list of duplicate tabs! 

Add website to whitelist if you want to allow duplicates for those websites. To access whitelist, press the extension icon at top right of your browser. 

Update-
V2.1 - Added whitelist
V2.2 - Fixed pop-up style on Windows
V2.3 - Fixed empty whitelist bug                    

Información Básica de la Extensión

Nombre No Dupe Tabs No Dupe Tabs
ID fajkhkmabkgflclnlmfdafpikejjncca
URL Oficial https://chrome.google.com/webstore/detail/no-dupe-tabs/fajkhkmabkgflclnlmfdafpikejjncca
Descripción Swap to preexisting tab if url is already opened.
Tamaño del Archivo 37.89 KB
Cantidad de Instalaciones 868
Versión Actual 2.3
Última Actualización 2016-08-11
Fecha de Publicación 2016-08-11
Calificación 4.00/5 Total de 9 Calificaciones
Desarrollador J Wang
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Dupe Tabs",
    "version": "2.3",
    "manifest_version": 2,
    "description": "Swap to preexisting tab if url is already opened.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "noDupeTab",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js",
            "jquery-3.1.0.min.js"
        ]
    },
    "permissions": [
        "tabs",
        "activeTab"
    ]
}