Tab Deduper

An extension that allows the user to deduplicate tabs.

Tab Deduper란 무엇입니까?

Tab Deduper은(는) Trevor Siemens에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that allows the user to deduplicate tabs."입니다.

확장 프로그램 스크린샷

screenshot

Tab Deduper 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Tab Deduper is an extension to find and remove duplicate Chrome tabs.

Unlike other currently available extensions which dedup tabs, Tab Deduper differentiates itself in the following ways:

- Duplicate tabs are not automatically closed. A list of duplicated tabs are presented, allowing for precise control over which tab gets closed.
- Use of text OR regular expression based settings to control how tabs are compared, including use of title, fragment, and doing sed-like regex replacements on URLs. This last feature is very useful if you use other extensions which modify your tab URLs.                    

확장 프로그램 기본 정보

이름 Tab Deduper Tab Deduper
ID fpcohiaaphpfoneofdlabjnpipbnkplj
공식 URL https://chromewebstore.google.com/detail/tab-deduper/fpcohiaaphpfoneofdlabjnpipbnkplj
설명 An extension that allows the user to deduplicate tabs.
파일 크기 26.73 KB
설치 횟수 1,259
현재 버전 1.2.1
최근 업데이트 2024-01-14
출시 날짜 2018-07-18
평점 4.67/5 총 9 개의 평점
개발자 Trevor Siemens
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tsiemens/ChromeTabDeduper
도움말 페이지 URL https://github.com/tsiemens/ChromeTabDeduper/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Deduper",
    "description": "An extension that allows the user to deduplicate tabs.",
    "version": "1.2.1",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "eventPage.js"
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "contextMenus"
    ]
}