Close Tab Shortcut
Customize chrome shortcut to close current tab
What is Close Tab Shortcut?
Close Tab Shortcut is a Chrome extension developed by Stanley Guevara, and its main feature is "Customize chrome shortcut to close current tab".
Download Close Tab Shortcut Extension CRX File
Download Close Tab Shortcut extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Simple extension for closing active tab. Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.
Extension Basic Information
Name | ![]() |
ID | oohndijkoieelbpmfehjecdihiiaecgb |
Official URL | https://chrome.google.com/webstore/detail/oohndijkoieelbpmfehjecdihiiaecgb |
Description | Customize chrome shortcut to close current tab |
File Size | 3.21 KB |
Installation Count | 11 |
Current Version | 1.0 |
Last Updated | 2016-10-16 |
Publish Date | 2016-10-16 |
Developer | Stanley Guevara |
Payment Type | free |
Extension Website | https://github.com/stanleyguevara/chrome-close-tab-shortcut |
Help Page URL | https://github.com/stanleyguevara/chrome-close-tab-shortcut |
Supported Languages | 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 } } |