Close All Tabs On Left
Closes all tabs on the left of current tab
Qu'est-ce que Close All Tabs On Left ?
Close All Tabs On Left est une extension Chrome développée par Unknown, et sa fonction principale est "Closes all tabs on the left of current tab".
Télécharger le fichier CRX de l'extension Close All Tabs On Left
Téléchargez les fichiers d'extension Close All Tabs On Left au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Close All Tabs On Left |
ID | afmdjfefjcfmedhgbegphdjhfckifaij |
URL Officiel | https://chromewebstore.google.com/detail/close-all-tabs-on-left/afmdjfefjcfmedhgbegphdjhfckifaij |
Description | Closes all tabs on the left of current tab |
Taille du Fichier | 6.72 KB |
Nombre d'Installations | 1,286 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2018-04-20 |
Date de Publication | 2018-04-20 |
Évaluation | 5.00/5 Total 8 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |