Duplicate Tab

Duplicate tab

Duplicate Tab là gì?

Duplicate Tab là một tiện ích mở rộng Chrome được phát triển bởi zertosh, và tính năng chính của nó là "Duplicate tab".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Duplicate Tab

Tải xuống các tệp mở rộng Duplicate Tab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Chrome extension to duplicate the current tab.

## Usage

* Click the "Duplicate tab" icon from the Google Chrome toolbar.
* From "Window" -> "Extensions" -> "Keyboard shortcuts", set a shortcut for "Duplicate tab".

## Performance

Consumes minimal resources:
  * Runs as an event page rather than a background page. So there is no persistent process running.
  * Does not collect analytics.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Duplicate Tab Duplicate Tab
ID ljhkjdibhiomfkbpkbfcffpgbpkggnif
URL Chính Thức https://chromewebstore.google.com/detail/duplicate-tab/ljhkjdibhiomfkbpkbfcffpgbpkggnif
Mô tả Duplicate tab
Kích Thước Tệp 39.38 KB
Số Lần Cài Đặt 6,269
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2024-02-04
Ngày Phát Hành 2017-12-02
Đánh Giá 3.75/5 Tổng số 12 Đánh Giá
Nhà Phát Triển zertosh
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/zertosh/duplicate-tab
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Duplicate Tab",
    "version": "2.0.0",
    "description": "Duplicate tab",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "32": "icon32.png"
        },
        "default_title": "Duplicate tab"
    },
    "background": {
        "service_worker": "service-worker.js"
    },
    "commands": {
        "duplicate-tab-keyboard-shortcut": {
            "suggested_key": {
                "default": "Ctrl+Shift+D",
                "mac": "Command+Shift+D"
            },
            "description": "Duplicate tab"
        },
        "close-other-tabs-shortcut": {
            "description": "Close Other Tabs",
            "suggested_key": {
                "default": "Alt+Shift+W"
            }
        }
    },
    "homepage_url": "https:\/\/github.com\/zertosh\/duplicate-tab",
    "minimum_chrome_version": "120"
}