Close Tab
Add a tab close action to the page context menu
Qu'est-ce que Close Tab ?
Close Tab est une extension Chrome développée par Hansifer, et sa fonction principale est "Add a tab close action to the page context menu".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Close Tab
Téléchargez les fichiers d'extension Close Tab 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
Close Tab lets you close a web page in a snap with a right mouse click and a key press. This is often quicker than moving the mouse cursor up to the tab's close icon or taking your hand off the mouse to use a keyboard shortcut that requires both hands. The shortcut key that closes the tab is customizable.
Informations de Base sur l'Extension
Nom | Close Tab |
ID | lnchemdcmhoccciihokpdkkekmnejfhj |
URL Officiel | https://chromewebstore.google.com/detail/close-tab/lnchemdcmhoccciihokpdkkekmnejfhj |
Description | Add a tab close action to the page context menu |
Taille du Fichier | 25.84 KB |
Nombre d'Installations | 1,786 |
Version Actuelle | 1.8.0 |
Dernière Mise à Jour | 2023-11-28 |
Date de Publication | 2020-05-09 |
Évaluation | 4.73/5 Total 22 Évaluations |
Développeur | Hansifer |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Close Tab", "version": "1.8.0", "minimum_chrome_version": "91", "description": "Add a tab close action to the page context menu", "default_locale": "en", "manifest_version": 3, "options_ui": { "page": "options_inline.html", "open_in_tab": false }, "icons": { "16": "img\/logo16.png", "48": "img\/logo48.png", "128": "img\/logo128.png" }, "action": { "default_icon": { "19": "img\/logo19.png", "38": "img\/logo38.png" }, "default_title": "Close selected tab" }, "background": { "service_worker": "bg.js", "type": "module" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "contextMenus", "storage" ] } |