Close Duplicate Tab
Close tabs which are duplicated. Only tabs with exact URL matches are closed.
Close Duplicate Tab란 무엇입니까?
Close Duplicate Tab은(는) IdleDev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Close tabs which are duplicated. Only tabs with exact URL matches are closed."입니다.
확장 프로그램 스크린샷
Close Duplicate Tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Ever run into situations where you have lots of tabs open and you realize you have some of them open multiple times? If then you felt the need to close duplicate instances of that tab, help is at hand! Close Duplicate Tab does exactly what its name says - it identifies URLs which are open in multiple tabs, and closes all instances retaining one. It also is smart enough to detect if you are on one of those duplicate tabs, and closes the other ones so you can continue doing what you are. Coming soon: keyboard shortcut, auto close, limit to current window, group top domains in single window etc. Suggest more features! v2.5 * NEW: Top domains listed on hovering over the extension icon. v2.4 * Pinned tabs will no longer be closed if they are duplicates. v2.3 * Now see titles for duplicate tabs, not long URLs * Special case handling for websites that "replace" tabs behind the scenes. Short version: more accurate duplicate tracking. v2.2 * Bug fix to handle browser restarts v2.0 ## MAJOR Upgrade!!! * Options page, with list of upcoming capabilties * NEW: Reorder (sort) pages by URL v1.8: * Lists open tab count, and duplicate tab count * List duplicate URLs, and their counts * Groundwork for options (coming soon!) v1.6: * Now identifies & closes duplicates across windows * More accessible colors for duplicate count badge
확장 프로그램 기본 정보
이름 | Close Duplicate Tab |
ID | lccfnphpgnpeghoffocbacbkohbapinm |
공식 URL | https://chromewebstore.google.com/detail/close-duplicate-tab/lccfnphpgnpeghoffocbacbkohbapinm |
설명 | Close tabs which are duplicated. Only tabs with exact URL matches are closed. |
파일 크기 | 18.95 KB |
설치 횟수 | 23,348 |
현재 버전 | 2.5 |
최근 업데이트 | 2020-05-11 |
출시 날짜 | 2020-05-11 |
평점 | 4.10/5 총 59 개의 평점 |
개발자 | IdleDev |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Close Duplicate Tab", "description": "Close tabs which are duplicated. Only tabs with exact URL matches are closed.", "version": "2.5", "background": { "scripts": [ "close_tabs.js" ] }, "options_page": "options.html", "permissions": [ "storage", "tabs" ], "browser_action": { "default_icon": "icon_128_gs.png", "default_title": "Close Duplicate Tabs" }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" } } |