Duplicate Tabs Closer

Duplicate Tabs Closer

Duplicate Tabs Closerคืออะไร?

Duplicate Tabs Closer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Peuj และคุณลักษณะหลักของมันคือ "Duplicate Tabs Closer"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Duplicate Tabs Closer

ดาวน์โหลดไฟล์ส่วนขยาย Duplicate Tabs Closer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Duplicate Tabs Closer detects and closes duplicate tabs.

Version 3.5.3 changelog:
* Fix: Popup UI issue

Version 3.5.2 changelog:
* Code optimizations
* Update UI
* Bug Fixes
* Add: Collapsible 'Options' menu
* New: Shrunk mode to hide unpinned option
* New: Custom option to close popup panel after closing duplicate tabs

Version 3.5.0 changelog:
* Code optimizations
* New filter option: Ignore case in URL
* New filter option: Ignore 'www' in URL domain name
* New scope option: Container in active window
* New scope option: Container in all windows
* Update UI

★ "On duplicate tab detected" options:
- Close tab automatically: automatically closes the detected duplicate tab.
- Do nothing: monitor tabs and update the badge icon to indicate the number of duplicate tabs detected.

★ On remaining tab options (used with "Close tab automatically):
- Do nothing (default): nothing is done after the duplicate tab is closed.
- Activate: once the duplicate tab is closed, the remaining tab is activated.
- Apply opening tab behavior: once the duplicate tab is closed, depending on the default tab behavior, the remaining tab will be moved to the position of the closed tab and activated if needed.

★ Whitelist (used with "Close tab automatically):
 List of urls to not close automatically.
 Duplicate tabs detected will be notified in badge.
 Wildcards is supported.

★ "Priority" options (used with "Close tab automatically" mode and "Close all duplicate tabs" button):
- Keep older tab (default): Keep the already existing tab.
- Keep newer tab: Keep the newer tab.
- Keep tab with https (default on): Ignore the scheme part during comparison and keep the tab with the https scheme.
- Keep pinned tab (default on): Keep the pinned tab.

★ Filters options:
- Ignore hash part in URL (default off): for instance https://addons.mozilla.org/en-US/firefox/addon/duplicate-tabs-closer/#detail-relnotes and https://addons.mozilla.org/en-US/firefox/addon/duplicate-tabs-closer will be considered as the same URL.
- Ignore search part in URL (default off): for instance https://addons.mozilla.org/en-US/firefox/addon/duplicate-tabs-closer/?src=ss and https://addons.mozilla.org/en-US/firefox/addon/duplicate-tabs-closer will be considered as the same URL.
- Ignore path part in URL (default off): for instance https://addons.mozilla.org/en-US/developers and https://addons.mozilla.org/en-US/firefox/addon/duplicate-tabs-closer will be considered as the same URL.
- Compare with tab title (default off): If the URL doesn't match then compare using the tab title.

★ Scope options:
- Active window (default): only closes/displays duplicate tabs that belong to a same window.
- All window: closes/displays duplicate tabs for all windows.

★ Hotkey:
- Alt+Shift+W to close all duplicate tabs (this could be configured in the options in future version)


For bug reports and feature requests:
https://github.com/Peuj/duplicate-tabs-closer/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Duplicate Tabs Closer Duplicate Tabs Closer
ID gnmdbogfankgjepgglmmfmbnimcmcjle
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/duplicate-tabs-closer/gnmdbogfankgjepgglmmfmbnimcmcjle
คำอธิบาย Duplicate Tabs Closer
ขนาดไฟล์ 1.03 MB
จำนวนการติดตั้ง 20,000
เวอร์ชันปัจจุบัน 3.5.3
อัปเดตครั้งล่าสุด 2020-06-14
วันที่เผยแพร่ 2020-06-14
คะแนน 4.39/5 รวมทั้งหมด 80 คะแนน
ผู้พัฒนา Peuj
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Peuj/duplicate-tabs-closer
URL หน้าช่วยเหลือ https://github.com/Peuj/duplicate-tabs-closer/issues
ภาษาที่รองรับ en,fr,ru,uk,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Duplicate Tabs Closer",
    "version": "3.5.3",
    "author": "Peuj",
    "default_locale": "en",
    "description": "Duplicate Tabs Closer",
    "icons": {
        "48": "images\/auto_close_32.png"
    },
    "background": {
        "scripts": [
            "helper.js",
            "tabsInfo.js",
            "options.js",
            "urlUtils.js",
            "badge.js",
            "worker.js",
            "messageListener.js",
            "background.js"
        ]
    },
    "browser_action": {
        "browser_style": false,
        "default_icon": {
            "16": "images\/auto_close_16.png",
            "32": "images\/auto_close_32.png"
        },
        "default_title": "Duplicate Tabs Closer",
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "storage"
    ],
    "commands": {
        "close-duplicate-tabs": {
            "suggested_key": {
                "default": "Alt+Shift+W"
            },
            "description": "Close all duplicate tabs"
        }
    },
    "options_ui": {
        "page": "optionPage\/optionPage.html",
        "open_in_tab": true
    }
}