Close Other Tabs

Close all OTHER tabs!

Wat is Close Other Tabs?

Close Other Tabs is een Chrome-extensie ontwikkeld door Delaney Garcia, en de belangrijkste functie is "Close all OTHER tabs!".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Close Other Tabs

Download Close Other Tabs-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
Officiële URL https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
Beschrijving Close all OTHER tabs!
Bestandsgrootte 17.36 KB
Aantal Installaties 46
Huidige Versie 1.02
Laatst Bijgewerkt 2019-11-18
Publicatiedatum 2019-11-15
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Delaney Garcia
Betalingswijze free
Ondersteunde Talen 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
}