Close Other Tabs

Close all OTHER tabs!

O que é Close Other Tabs?

Close Other Tabs é uma extensão do Chrome desenvolvida por Delaney Garcia, e sua principal característica é "Close all OTHER tabs!".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Close Other Tabs

Baixe arquivos de extensão Close Other Tabs 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

                        When chrome phased out the 'close other tabs' functionality, I was bummed... so we made this extension which re-enables that functionality.

When you click the extension icon, it should close all other tabs you have open. It will not close the active tab, nor will it close pinned tabs.

I hope this saves you time like it did for us!                    

Informações Básicas da Extensão

Nome Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
URL Oficial https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
Descrição Close all OTHER tabs!
Tamanho do Arquivo 17.36 KB
Contagem de Instalações 46
Versão Atual 1.02
Última Atualização 2019-11-18
Data de Publicação 2019-11-15
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Delaney Garcia
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Close Other Tabs",
    "description": "Close all OTHER tabs!",
    "version": "1.02",
    "homepage_url": "https:\/\/foobar.com",
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Close OTHER tabs!",
        "default_icon": "icon.png"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "manifest_version": 2
}