Close Other Tabs

Close all OTHER tabs!

Hvad er Close Other Tabs?

Close Other Tabs er en Chrome-udvidelse udviklet af Delaney Garcia, og dens hovedfunktion er "Close all OTHER tabs!".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Close Other Tabs-udvidelses-CRX-fil

Download Close Other Tabs-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Close Other Tabs Close Other Tabs
ID ibhnkmpkhgoblaieahebifggipoccekf
Officiel URL https://chromewebstore.google.com/detail/close-other-tabs/ibhnkmpkhgoblaieahebifggipoccekf
Beskrivelse Close all OTHER tabs!
Filstørrelse 17.36 KB
Antal Installationer 46
Nuværende Version 1.02
Senest Opdateret 2019-11-18
Udgivelsesdato 2019-11-15
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Delaney Garcia
Betalingsmetode free
Understøttede Sprog 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
}