Duplicate Tab Hotkey

Adds a hotkey for duplicating the current tab.

什麼是Duplicate Tab Hotkey?

Duplicate Tab Hotkey是由Elijah Verdoorn開發的Chrome擴展程式,該擴展的主要功能是“Adds a hotkey for duplicating the current tab.”。

擴展截圖

screenshot

下載Duplicate Tab Hotkey擴展crx文件

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

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Duplicate Tab Hotkey Duplicate Tab Hotkey
ID adgkgjklgiilebgjckenkknhbenpiinc
官方網址 https://chromewebstore.google.com/detail/duplicate-tab-hotkey/adgkgjklgiilebgjckenkknhbenpiinc
簡介 Adds a hotkey for duplicating the current tab.
檔案大小 58.09 KB
安裝次數 91
目前版本 1.1.0
更新時間 2020-01-24
上架時間 2020-01-24
開發者 Elijah Verdoorn
電子郵箱 [email protected]
付費類型 free
擴展官網 https://elijahverdoorn.com
說明頁面URL https://elijahverdoorn.com/contact
隱私政策頁面URL https://elijahverdoorn.com/chrome-tab-duplicator-privacy
支援的語言 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
}