Keyboard shortcuts to close Chrome tabs
Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones
What is Keyboard shortcuts to close Chrome tabs?
Keyboard shortcuts to close Chrome tabs is a Chrome extension developed by https://diophung.com, and its main feature is "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones".
Extension Screenshots
Download Keyboard shortcuts to close Chrome tabs Extension CRX File
Download Keyboard shortcuts to close Chrome tabs 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
Ever wish Chrome has the hotkeys to close tabs to the right, or to the left, or pin current tab? This extension will let you do it, and there are more. You can configure the hotkeys to: - Close tabs to the left. - Close tabs to the right. - Close other tabs. - Pin/unpin a tab. Source code available at : https://github.com/diophung/close-chrome-tabs Please provide your feedback to Twitter: @diophung or email : [email protected].
Extension Basic Information
Name | Keyboard shortcuts to close Chrome tabs |
ID | fipfgiejfpcdacpjepkohdlnjonchnal |
Official URL | https://chromewebstore.google.com/detail/keyboard-shortcuts-to-clo/fipfgiejfpcdacpjepkohdlnjonchnal |
Description | Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left/right/other tabs or toggle pinned ones |
File Size | 293 KB |
Installation Count | 4,928 |
Current Version | 0.3.0 |
Last Updated | 2022-02-07 |
Publish Date | 2018-06-24 |
Rating | 4.64/5 Total 25 Ratings |
Developer | https://diophung.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/diophung/close-chrome-tabs |
Help Page URL | https://diophung.com/chrome-tab-shortcut-privacy-policy/ |
Privacy Policy Page URL | https://github.com/diophung/close-chrome-tabs/wiki/Privacy-Policy |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "close-other-tabs-dp": { "description": "Close other tabs", "suggested_key": { "default": "Alt+Shift+W" } }, "close-left-tabs-dp": { "description": "Close tabs to the left", "suggested_key": { "default": "Alt+Shift+L" } }, "close-right-tabs-dp": { "description": "Close tabs to the right", "suggested_key": { "default": "Alt+Shift+R" } }, "toggle-pin-dp": { "description": "Pin\/unpin Tab", "suggested_key": { "default": "Alt+Shift+P" } } }, "description": "Added the missing hotkeys to control Chrome tabs. Now you can use shortcuts to close left\/right\/other tabs or toggle pinned ones", "icons": { "128": "images\/tabs_128.png", "48": "images\/tabs_48.png" }, "manifest_version": 2, "name": "Keyboard shortcuts to close Chrome tabs", "short_name": "Shortcuts to close tabs", "options_page": "options.html", "permissions": [], "version": "0.3.0" } |