Close Other Tabs

Close all OTHER tabs!

Cos'è Close Other Tabs?

Close Other Tabs è un'estensione di Chrome sviluppata da Delaney Garcia, e la sua funzione principale è "Close all OTHER tabs!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Close Other Tabs

Scarica i file di estensione Close Other 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

                        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!                    

Informazioni di Base sull'Estensione

Nome Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
URL Ufficiale https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
Descrizione Close all OTHER tabs!
Dimensione del File 17.36 KB
Conteggio Installazioni 46
Versione Corrente 1.02
Ultimo Aggiornamento 2019-11-18
Data di Pubblicazione 2019-11-15
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Delaney Garcia
Tipo di Pagamento free
Lingue Supportate 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
}