Close Other Tabs

Close all OTHER tabs!

Qu'est-ce que Close Other Tabs ?

Close Other Tabs est une extension Chrome développée par Delaney Garcia, et sa fonction principale est "Close all OTHER tabs!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Close Other Tabs

Téléchargez les fichiers d'extension Close Other Tabs au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
URL Officiel https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
Description Close all OTHER tabs!
Taille du Fichier 17.36 KB
Nombre d'Installations 46
Version Actuelle 1.02
Dernière Mise à Jour 2019-11-18
Date de Publication 2019-11-15
Évaluation 5.00/5 Total 2 Évaluations
Développeur Delaney Garcia
Type de Paiement free
Langues Prises en Charge 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
}