Close All Tabs On Left

Closes all tabs on the left of current tab

Co je Close All Tabs On Left?

Close All Tabs On Left je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Closes all tabs on the left of current tab“.

Stáhnout soubor CRX rozšíření Close All Tabs On Left

Stáhněte si soubory rozšíření Close All Tabs On Left ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Close All Tabs On Left Close All Tabs On Left
ID afmdjfefjcfmedhgbegphdjhfckifaij
Oficiální URL https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij
Popis Closes all tabs on the left of current tab
Velikost souboru 6.72 KB
Počet instalací 1,286
Aktuální Verze 1.2
Poslední Aktualizace 2018-04-20
Datum Vydání 2018-04-20
Hodnocení 5.00/5 Celkem 8 Hodnocení
Vývojář Unknown
Typ Platby free
Podporované Jazyky 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"
    ]
}