No Dupe Tabs

Swap to preexisting tab if url is already opened.

No Dupe Tabs란 무엇입니까?

No Dupe Tabs은(는) J Wang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Swap to preexisting tab if url is already opened."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

No Dupe Tabs 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        If you open a URL that already exists in one of your tabs, this simple extension will close the tab and switch to the preexisting tab! If you rarely reuse tabs, use this extension to avoid a list of duplicate tabs! 

Add website to whitelist if you want to allow duplicates for those websites. To access whitelist, press the extension icon at top right of your browser. 

Update-
V2.1 - Added whitelist
V2.2 - Fixed pop-up style on Windows
V2.3 - Fixed empty whitelist bug                    

확장 프로그램 기본 정보

이름 No Dupe Tabs No Dupe Tabs
ID fajkhkmabkgflclnlmfdafpikejjncca
공식 URL https://chrome.google.com/webstore/detail/no-dupe-tabs/fajkhkmabkgflclnlmfdafpikejjncca
설명 Swap to preexisting tab if url is already opened.
파일 크기 37.89 KB
설치 횟수 868
현재 버전 2.3
최근 업데이트 2016-08-11
출시 날짜 2016-08-11
평점 4.00/5 총 9 개의 평점
개발자 J Wang
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "No Dupe Tabs",
    "version": "2.3",
    "manifest_version": 2,
    "description": "Swap to preexisting tab if url is already opened.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "noDupeTab",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js",
            "jquery-3.1.0.min.js"
        ]
    },
    "permissions": [
        "tabs",
        "activeTab"
    ]
}