Close All Tabs On Left

Closes all tabs on the left of current tab

Co to jest Close All Tabs On Left?

Close All Tabs On Left to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Closes all tabs on the left of current tab”.

Pobierz plik CRX rozszerzenia Close All Tabs On Left

Pobierz pliki rozszerzeń Close All Tabs On Left w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Close All Tabs On Left Close All Tabs On Left
ID afmdjfefjcfmedhgbegphdjhfckifaij
Oficjalny URL https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij
Opis Closes all tabs on the left of current tab
Rozmiar pliku 6.72 KB
Liczba instalacji 1,286
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2018-04-20
Data Publikacji 2018-04-20
Ocena 5.00/5 Łącznie 8 Oceny
Deweloper Unknown
Typ Płatności free
Obsługiwane Języki 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"
    ]
}