Close Tab Shortcut
Customize chrome shortcut to close current tab
Wat is Close Tab Shortcut?
Close Tab Shortcut is een Chrome-extensie ontwikkeld door Stanley Guevara, en de belangrijkste functie is "Customize chrome shortcut to close current tab".
Download het CRX-bestand van de extensie Close Tab Shortcut
Download Close Tab Shortcut-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
Simple extension for closing active tab. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
Basisinformatie over de Extensie
Naam | ![]() |
ID | oohndijkoieelbpmfehjecdihiiaecgb |
Officiële URL | https://chrome.google.com/webstore/detail/oohndijkoieelbpmfehjecdihiiaecgb |
Beschrijving | Customize chrome shortcut to close current tab |
Bestandsgrootte | 3.21 KB |
Aantal Installaties | 11 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2016-10-16 |
Publicatiedatum | 2016-10-16 |
Ontwikkelaar | Stanley Guevara |
Betalingswijze | free |
Extensiewebsite | https://github.com/stanleyguevara/chrome-close-tab-shortcut |
Help Pagina-URL | https://github.com/stanleyguevara/chrome-close-tab-shortcut |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Close Tab Shortcut", "permissions": [ "tabs" ], "version": "1.0", "description": "Customize chrome shortcut to close current tab", "commands": { "close-tab": { "suggested_key": { "default": "Alt+X", "mac": "Ctrl+X" }, "description": "Close current tab" } }, "background": { "scripts": [ "main.js" ], "persistent": false } } |