Close Other Tabs
Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts.
What is Close Other Tabs?
Close Other Tabs is a Chrome extension developed by https://www.facebook.com/browservery, and its main feature is "Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts.".
Extension Screenshots
Download Close Other Tabs Extension CRX File
Download Close Other 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
Allows you to close other tabs with one click on the extension icon. Right-clicking on the same icon brings context menu with additional options ("Close tabs to the right" and "Close tabs to the left"). The extension also supports keyboard shortcuts. Go to chrome://extensions/shortcuts to set them. ---------------------------------------------------------------- 🖼️ Follow my Facebook page (more extensions): https://bit.ly/browservery ---------------------------------------------------------------- The icon image used in the extension: https://www.iconfinder.com/icons/309090/close_cross_delete_icon The color and size of the image were changed.
Extension Basic Information
Name | Close Other Tabs |
ID | higiahnfphokonkjalljdfgjhafdjbil |
Official URL | https://chromewebstore.google.com/detail/close-other-tabs/higiahnfphokonkjalljdfgjhafdjbil |
Description | Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts. |
File Size | 17.42 KB |
Installation Count | 2,925 |
Current Version | 0.3.0 |
Last Updated | 2022-07-05 |
Publish Date | 2019-11-18 |
Rating | 4.67/5 Total 12 Ratings |
Developer | https://www.facebook.com/browservery |
[email protected] | |
Payment Type | free |
Extension Website | https://bit.ly/browservery |
Help Page URL | https://bit.ly/browservery-support |
Privacy Policy Page URL | https://github.com/loftyshaky/extensions-privacy-policy/blob/main/extensions-privacy-policy.md |
Supported Languages | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_name__", "description": "__MSG_desc__", "version": "0.3.0", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "action": { "default_icon": { "16": "icons\/icon16.png", "19": "icons\/icon19.png", "32": "icons\/icon32.png", "64": "icons\/icon64.png" } }, "permissions": [ "contextMenus" ], "background": { "service_worker": "js\/background.js", "type": "module" }, "commands": { "close_other_tabs": { "suggested_key": { "default": "Ctrl+Shift+1" }, "description": "__MSG_close_other_tabs__" }, "close_tabs_to_the_right": { "suggested_key": { "default": "Ctrl+Shift+3" }, "description": "__MSG_close_tabs_to_the_right__" }, "close_tabs_to_the_left": { "suggested_key": { "default": "Ctrl+Shift+2" }, "description": "__MSG_close_tabs_to_the_left__" } } } |