Close All Tabs On Left

Closes all tabs on the left of current tab

Vad är Close All Tabs On Left?

Close All Tabs On Left är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Closes all tabs on the left of current tab".

Ladda ner Close All Tabs On Left-förlängningens CRX-fil

Ladda ner Close All Tabs On Left-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Close All Tabs On Left Close All Tabs On Left
ID afmdjfefjcfmedhgbegphdjhfckifaij
Officiell webbadress https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij
Beskrivning Closes all tabs on the left of current tab
Filstorlek 6.72 KB
Antal Installationer 1,286
Aktuell Version 1.2
Senast Uppdaterad 2018-04-20
Publiceringsdatum 2018-04-20
Betyg 5.00/5 Totalt 8 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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"
    ]
}