Close Tab
Add a tab close action to the page context menu
Close Tab란 무엇입니까?
Close Tab은(는) Hansifer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a tab close action to the page context menu"입니다.
확장 프로그램 스크린샷
Close Tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Close Tab lets you close a web page in a snap with a right mouse click and a key press. This is often quicker than moving the mouse cursor up to the tab's close icon or taking your hand off the mouse to use a keyboard shortcut that requires both hands. The shortcut key that closes the tab is customizable.
확장 프로그램 기본 정보
이름 | Close Tab |
ID | lnchemdcmhoccciihokpdkkekmnejfhj |
공식 URL | https://chromewebstore.google.com/detail/close-tab/lnchemdcmhoccciihokpdkkekmnejfhj |
설명 | Add a tab close action to the page context menu |
파일 크기 | 25.84 KB |
설치 횟수 | 1,786 |
현재 버전 | 1.8.0 |
최근 업데이트 | 2023-11-28 |
출시 날짜 | 2020-05-09 |
평점 | 4.73/5 총 22 개의 평점 |
개발자 | Hansifer |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Close Tab", "version": "1.8.0", "minimum_chrome_version": "91", "description": "Add a tab close action to the page context menu", "default_locale": "en", "manifest_version": 3, "options_ui": { "page": "options_inline.html", "open_in_tab": false }, "icons": { "16": "img\/logo16.png", "48": "img\/logo48.png", "128": "img\/logo128.png" }, "action": { "default_icon": { "19": "img\/logo19.png", "38": "img\/logo38.png" }, "default_title": "Close selected tab" }, "background": { "service_worker": "bg.js", "type": "module" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "contextMenus", "storage" ] } |