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…

O que é SameTab - keep only one copy of the tab open?

SameTab - keep only one copy of the tab open é uma extensão do Chrome desenvolvida por valentin.alekseev, e sua principal característica é "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…".

Baixar o arquivo CRX da Extensão SameTab - keep only one copy of the tab open

Baixe arquivos de extensão SameTab - keep only one copy of the tab open no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome 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
Descrição 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…
Tamanho do Arquivo 8.9 KB
Contagem de Instalações 12
Versão Atual 1.1
Última Atualização 2016-02-16
Data de Publicação 2016-02-16
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor valentin.alekseev
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/valentinalexeev/chrome-sametab
Idiomas Suportados 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"
    ]
}