Close Multiple Tabs
Close Tabs to Right/Left/Other With a Shortcut Key
Close Multiple Tabs란 무엇입니까?
Close Multiple Tabs은(는) Nicholas Hsiang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Close Tabs to Right/Left/Other With a Shortcut Key"입니다.
확장 프로그램 스크린샷
Close Multiple Tabs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# 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 用,爽得不要不要的。
확장 프로그램 기본 정보
이름 | Close Multiple Tabs |
ID | acpnjejgmplmdjiogpejdonndpleeank |
공식 URL | https://chromewebstore.google.com/detail/close-multiple-tabs/acpnjejgmplmdjiogpejdonndpleeank |
설명 | Close Tabs to Right/Left/Other With a Shortcut Key |
파일 크기 | 9.99 KB |
설치 횟수 | 64 |
현재 버전 | 1.1 |
최근 업데이트 | 2023-06-30 |
출시 날짜 | 2022-06-13 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Nicholas Hsiang |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/xianghongai/Chrome-Close-Multiple-Tabs |
개인정보 보호 정책 페이지 URL | https://xinlu.ink/privacy |
지원되는 언어 | 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" } } |