Close All Tabs On Left
Closes all tabs on the left of current tab
Was ist Close All Tabs On Left?
Close All Tabs On Left ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Closes all tabs on the left of current tab".
Close All Tabs On Left-Erweiterungs-CRX-Datei herunterladen
Laden Sie Close All Tabs On Left-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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.                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | afmdjfefjcfmedhgbegphdjhfckifaij | 
| Offizielle URL | https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij | 
| Beschreibung | Closes all tabs on the left of current tab | 
| Dateigröße | 6.72 KB | 
| Installationsanzahl | 1,286 | 
| Aktuelle Version | 1.2 | 
| Letztes Update | 2018-04-20 | 
| Veröffentlichungsdatum | 2018-04-20 | 
| Bewertung | 5.00/5 Insgesamt 8 Bewertungen | 
| Entwickler | Unknown | 
| Zahlungsart | free | 
| Unterstützte Sprachen | 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"
    ]
}  |  |