Duplicate Tab

Duplicate tab

什麼是Duplicate Tab?

Duplicate Tab是由zertosh開發的Chrome擴展程式,該擴展的主要功能是“Duplicate tab”。

擴展截圖

screenshot

下載Duplicate Tab擴展crx文件

下載Duplicate Tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Duplicate Tab Duplicate Tab
ID ljhkjdibhiomfkbpkbfcffpgbpkggnif
官方網址 https://chromewebstore.google.com/detail/duplicate-tab/ljhkjdibhiomfkbpkbfcffpgbpkggnif
簡介 Duplicate tab
檔案大小 39.38 KB
安裝次數 6,269
目前版本 2.0.0
更新時間 2024-02-04
上架時間 2017-12-02
評分 3.75/5 共 12 次評分
開發者 zertosh
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/zertosh/duplicate-tab
支援的語言 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"
}