Tab Duplicator Shortcut

An extension to do some things with keyboard shortcuts

Tab Duplicator Shortcut là gì?

Tab Duplicator Shortcut là một tiện ích mở rộng Chrome được phát triển bởi Tanner Tracht, và tính năng chính của nó là "An extension to do some things with keyboard shortcuts".

Ả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 Tab Duplicator Shortcut

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

                        This lightweight extension will add a keyboard shortcut for duplicating your current tab

simply press CTRL+SHIFT+Y and the current tab will be instantly duplicated.                    

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

Tên Tab Duplicator Shortcut Tab Duplicator Shortcut
ID dbpmgojhkioibaampnbpiiblpdjmkbjc
URL Chính Thức https://chromewebstore.google.com/detail/tab-duplicator-shortcut/dbpmgojhkioibaampnbpiiblpdjmkbjc
Mô tả An extension to do some things with keyboard shortcuts
Kích Thước Tệp 11.14 KB
Số Lần Cài Đặt 324
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2018-11-12
Ngày Phát Hành 2018-11-12
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Tanner Tracht
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Duplicator Shortcut",
    "description": "An extension to do some things with keyboard shortcuts",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html",
        "default_title": "Tab Duplicator"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "commands": {
        "boom": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Toggle feature foo"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}