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
公式URL 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
Eメール [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
}