No Dupe Tabs

Swap to preexisting tab if url is already opened.

Cos'è No Dupe Tabs?

No Dupe Tabs è un'estensione di Chrome sviluppata da J Wang, e la sua funzione principale è "Swap to preexisting tab if url is already opened.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione No Dupe Tabs

Scarica i file di estensione No Dupe Tabs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome No Dupe Tabs No Dupe Tabs
ID fajkhkmabkgflclnlmfdafpikejjncca
URL Ufficiale https://chrome.google.com/webstore/detail/no-dupe-tabs/fajkhkmabkgflclnlmfdafpikejjncca
Descrizione Swap to preexisting tab if url is already opened.
Dimensione del File 37.89 KB
Conteggio Installazioni 868
Versione Corrente 2.3
Ultimo Aggiornamento 2016-08-11
Data di Pubblicazione 2016-08-11
Valutazione 4.00/5 Totale 9 Valutazioni
Sviluppatore J Wang
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}