Duplicate Tab Hotkey

Adds a hotkey for duplicating the current tab.

Duplicate Tab Hotkey क्या है?

Duplicate Tab Hotkey Elijah Verdoorn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a hotkey for duplicating the current tab."।

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

screenshot

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

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

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

                        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
ईमेल [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
}