Close All Tabs On Left
Closes all tabs on the left of current tab
Wat is Close All Tabs On Left?
Close All Tabs On Left is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Closes all tabs on the left of current tab".
Download het CRX-bestand van de extensie Close All Tabs On Left
Download Close All Tabs On Left-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Close All Tabs On Left |
ID | afmdjfefjcfmedhgbegphdjhfckifaij |
Officiële URL | https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij |
Beschrijving | Closes all tabs on the left of current tab |
Bestandsgrootte | 6.72 KB |
Aantal Installaties | 1,286 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2018-04-20 |
Publicatiedatum | 2018-04-20 |
Beoordeling | 5.00/5 Totaal 8 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |