Close Multiple Tabs
Close Tabs to Right/Left/Other With a Shortcut Key
What is Close Multiple Tabs?
Close Multiple Tabs is a Chrome extension developed by Nicholas Hsiang, and its main feature is "Close Tabs to Right/Left/Other With a Shortcut Key".
Extension Screenshots
Download Close Multiple Tabs Extension CRX File
Download Close Multiple 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
# Close Multiple Tabs Close all tabs of the browser "left/right/other" by shortcut. ## Configure shortcut keys Enter `chrome://extensions/shortcuts` in the browser address bar to configure shortcut keys: - `Alt+Shift+R`, Close Tabs to right - `Alt+Shift+L`, Close Tabs to left - `Alt+Shift+O`, Close other Tabs It is recommended to use it with WGestures, it is so cool. --- # 关闭多个标签 通过快捷键方式关闭浏览器“左侧/右侧/其它”所有标签页。 ## 配置按键 在浏览器地址栏输入 `chrome://extensions/shortcuts`,配置按键: - `Alt+Shift+R`, 关闭右侧标签页 - `Alt+Shift+L`, 关闭左侧标签页 - `Alt+Shift+O`, 关闭其它标签页 建议搭配 WGestures 用,爽得不要不要的。
Extension Basic Information
Name | Close Multiple Tabs |
ID | acpnjejgmplmdjiogpejdonndpleeank |
Official URL | https://chromewebstore.google.com/detail/close-multiple-tabs/acpnjejgmplmdjiogpejdonndpleeank |
Description | Close Tabs to Right/Left/Other With a Shortcut Key |
File Size | 9.99 KB |
Installation Count | 64 |
Current Version | 1.1 |
Last Updated | 2023-06-30 |
Publish Date | 2022-06-13 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Nicholas Hsiang |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/xianghongai/Chrome-Close-Multiple-Tabs |
Privacy Policy Page URL | https://xinlu.ink/privacy |
Supported Languages | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.1", "manifest_version": 3, "description": "__MSG_appDesc__", "default_locale": "en", "permissions": [], "background": { "service_worker": "background.js" }, "commands": { "close-right-tabs": { "suggested_key": { "default": "Alt+Shift+R" }, "description": "__MSG_closeTabsToRight__" }, "close-left-tabs": { "suggested_key": { "default": "Alt+Shift+L" }, "description": "__MSG_closeTabsToLeft__" }, "close-other-tabs": { "suggested_key": { "default": "Alt+Shift+O" }, "description": "__MSG_closeOtherTabs__" } }, "icons": { "16": "art16.png", "32": "art32.png", "48": "art48.png", "128": "art128.png" } } |