Duplicate Tab Hotkey

Adds a hotkey for duplicating the current tab.

Duplicate Tab Hotkey là gì?

Duplicate Tab Hotkey là một tiện ích mở rộng Chrome được phát triển bởi Elijah Verdoorn, và tính năng chính của nó là "Adds a hotkey for duplicating the current 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 Hotkey

Tải xuống các tệp mở rộng Duplicate Tab Hotkey 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

                        A simple, free, libre, open-source extension requiring no permissions that adds a hotkey to Chrome for duplicating the current tab. No tracking is used in this extension, which also requires no special permissions. Users are welcome to view the complete source code (https://github.com/elijahverdoorn/duplicate-tab-extension) in order to ensure confidence that their browsing remains private.

Right now, the hotkey is configured to be Ctrl+Shift+E on Windows and Command+Shift+E on Mac. In future versions the hotkey may become configurable.                    

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

Tên Duplicate Tab Hotkey Duplicate Tab Hotkey
ID adgkgjklgiilebgjckenkknhbenpiinc
URL Chính Thức https://chromewebstore.google.com/detail/duplicate-tab-hotkey/adgkgjklgiilebgjckenkknhbenpiinc
Mô tả Adds a hotkey for duplicating the current tab.
Kích Thước Tệp 58.09 KB
Số Lần Cài Đặt 91
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2020-01-24
Ngày Phát Hành 2020-01-24
Nhà Phát Triển Elijah Verdoorn
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://elijahverdoorn.com
URL Trang Trợ Giúp https://elijahverdoorn.com/contact
URL Trang Chính Sách Bảo Mật https://elijahverdoorn.com/chrome-tab-duplicator-privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duplicate Tab Hotkey",
    "version": "1.1.0",
    "description": "Adds a hotkey for duplicating the current tab.",
    "browser_action": {
        "default_popup": "about.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "duplicate-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Duplicate the current tab."
        }
    },
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "options_ui": {
        "page": "about.html",
        "open_in_tab": false
    },
    "manifest_version": 2
}