Duplicate Tab Shortcut

Press Alt+Shift+D to duplicate the current tab (Option+Shift+D on Mac). Shortcut is configurable.

Duplicate Tab Shortcut क्या है?

Duplicate Tab Shortcut https://stefansundin.github.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Press Alt+Shift+D to duplicate the current tab (Option+Shift+D on Mac). Shortcut is configurable."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Duplicate Tab Shortcut एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        There are additional shortcuts as well. You can configure and use all of them at the same time.

- There is a shortcut to open the new tab in a new window.
- There is a shortcut to pop the current tab (or multiple highlighted tabs) out to a new window.
- There is a shortcut to open a blank new tab to the immediate right of the current tab (i.e. instead of all the way to the right).

Tip: Even without this extension, it is possible to middle click the refresh button to duplicate the current tab.

Firefox version: https://addons.mozilla.org/addon/duplicate-tab-shortcut/

Source code: https://github.com/stefansundin/duplicate-tab                    

एक्सटेंशन की मूल जानकारी

नाम Duplicate Tab Shortcut Duplicate Tab Shortcut
ID klehggjefofgiajjfpoebdidnpjmljhb
आधिकारिक URL https://chromewebstore.google.com/detail/duplicate-tab-shortcut/klehggjefofgiajjfpoebdidnpjmljhb
विवरण Press Alt+Shift+D to duplicate the current tab (Option+Shift+D on Mac). Shortcut is configurable.
फ़ाइल का आकार 28.21 KB
स्थापना संख्या 66,596
वर्तमान संस्करण 1.6.0
अंतिम अपडेट 2023-07-24
प्रकाशन तिथि 2019-09-15
रेटिंग 4.90/5 कुल 112 रेटिंग्स
डेवलपर https://stefansundin.github.io
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/stefansundin/duplicate-tab
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Duplicate Tab Shortcut",
    "version": "1.6.0",
    "description": "Press Alt+Shift+D to duplicate the current tab (Option+Shift+D on Mac). Shortcut is configurable.",
    "homepage_url": "https:\/\/github.com\/stefansundin\/duplicate-tab",
    "author": "Stefan Sundin",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "background": {
        "service_worker": "sw.js"
    },
    "options_ui": {
        "page": "popup.html"
    },
    "action": {
        "default_icon": {
            "19": "img\/icon19.png",
            "38": "img\/icon38.png"
        },
        "default_title": "Configure Duplicate Tab Shortcut",
        "default_popup": "popup.html"
    },
    "commands": {
        "duplicate-tab": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            },
            "description": "Duplicate the current tab"
        },
        "duplicate-to-new-window": {
            "description": "Duplicate to a new window"
        },
        "pop-out-to-new-window": {
            "description": "Pop tab out to a new window"
        },
        "new-tab-to-the-right": {
            "description": "New tab to the right"
        }
    },
    "permissions": [
        "storage"
    ],
    "minimum_chrome_version": "96"
}