Close Other Tabs
Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts.
Close Other Tabs란 무엇입니까?
Close Other Tabs은(는) https://www.facebook.com/browservery에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts."입니다.
확장 프로그램 스크린샷
Close Other Tabs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Close Other Tabs |
ID | higiahnfphokonkjalljdfgjhafdjbil |
공식 URL | https://chromewebstore.google.com/detail/close-other-tabs/higiahnfphokonkjalljdfgjhafdjbil |
설명 | Close other tabs with one click on the extension icon, via context menu or with keyboard shortcuts. |
파일 크기 | 17.42 KB |
설치 횟수 | 2,925 |
현재 버전 | 0.3.0 |
최근 업데이트 | 2022-07-05 |
출시 날짜 | 2019-11-18 |
평점 | 4.67/5 총 12 개의 평점 |
개발자 | https://www.facebook.com/browservery |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://bit.ly/browservery |
도움말 페이지 URL | https://bit.ly/browservery-support |
개인정보 보호 정책 페이지 URL | https://github.com/loftyshaky/extensions-privacy-policy/blob/main/extensions-privacy-policy.md |
지원되는 언어 | 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__" } } } |