Close All Tabs On Left

Closes all tabs on the left of current tab

Hvad er Close All Tabs On Left?

Close All Tabs On Left er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Closes all tabs on the left of current tab".

Download Close All Tabs On Left-udvidelses-CRX-fil

Download Close All Tabs On Left-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

                        A very simple extension that closes all tabs left of the current tab in the current window. You can also use the shortcut Alt+Shift+Q to close the tabs.                    

Grundlæggende oplysninger om udvidelsen

Navn Close All Tabs On Left Close All Tabs On Left
ID afmdjfefjcfmedhgbegphdjhfckifaij
Officiel URL https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij
Beskrivelse Closes all tabs on the left of current tab
Filstørrelse 6.72 KB
Antal Installationer 1,286
Nuværende Version 1.2
Senest Opdateret 2018-04-20
Udgivelsesdato 2018-04-20
Bedømmelse 5.00/5 Samlet 8 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Close All Tabs On Left",
    "description": "Closes all tabs on the left of current tab",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "commands": {
        "close-all-left-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+Q",
                "mac": "Alt+Shift+Q"
            },
            "description": "Close all tabs on the left of current tab"
        }
    },
    "permissions": [
        "tabs"
    ]
}