SameTab - keep only one copy of the tab open

SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…

Cos'è SameTab - keep only one copy of the tab open?

SameTab - keep only one copy of the tab open è un'estensione di Chrome sviluppata da valentin.alekseev, e la sua funzione principale è "SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…".

Scarica il file CRX dell'estensione SameTab - keep only one copy of the tab open

Scarica i file di estensione SameTab - keep only one copy of the tab open 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

                        SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it will close the duplicate freeing up some memory and tab space.                    

Informazioni di Base sull'Estensione

Nome SameTab - keep only one copy of the tab open SameTab - keep only one copy of the tab open
ID egndhnnhgedkbnkdfjpakgpclhbjcjfb
URL Ufficiale https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb
Descrizione SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…
Dimensione del File 8.9 KB
Conteggio Installazioni 12
Versione Corrente 1.1
Ultimo Aggiornamento 2016-02-16
Data di Pubblicazione 2016-02-16
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore valentin.alekseev
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/valentinalexeev/chrome-sametab
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SameTab - keep only one copy of the tab open",
    "description": "",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "index.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "notifications",
        "storage"
    ]
}