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…

¿Qué es SameTab - keep only one copy of the tab open?

SameTab - keep only one copy of the tab open es una extensión de Chrome desarrollada por valentin.alekseev, y su función principal es "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…".

Descargar Archivo CRX de la Extensión SameTab - keep only one copy of the tab open

Descarga archivos de extensión SameTab - keep only one copy of the tab open 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

                        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.                    

Información Básica de la Extensión

Nombre SameTab - keep only one copy of the tab open SameTab - keep only one copy of the tab open
ID egndhnnhgedkbnkdfjpakgpclhbjcjfb
URL Oficial https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb
Descripción 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…
Tamaño del Archivo 8.9 KB
Cantidad de Instalaciones 12
Versión Actual 1.1
Última Actualización 2016-02-16
Fecha de Publicación 2016-02-16
Calificación 3.50/5 Total de 2 Calificaciones
Desarrollador valentin.alekseev
Tipo de Pago free
URL de la Página de Ayuda https://github.com/valentinalexeev/chrome-sametab
Idiomas Soportados 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"
    ]
}