Duplicate Tab Hotkey

Adds a hotkey for duplicating the current tab.

¿Qué es Duplicate Tab Hotkey?

Duplicate Tab Hotkey es una extensión de Chrome desarrollada por Elijah Verdoorn, y su función principal es "Adds a hotkey for duplicating the current tab.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Duplicate Tab Hotkey

Descarga archivos de extensión Duplicate Tab Hotkey en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Duplicate Tab Hotkey Duplicate Tab Hotkey
ID adgkgjklgiilebgjckenkknhbenpiinc
URL Oficial https://chromewebstore.google.com/detail/duplicate-tab-hotkey/adgkgjklgiilebgjckenkknhbenpiinc
Descripción Adds a hotkey for duplicating the current tab.
Tamaño del Archivo 58.09 KB
Cantidad de Instalaciones 91
Versión Actual 1.1.0
Última Actualización 2020-01-24
Fecha de Publicación 2020-01-24
Desarrollador Elijah Verdoorn
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://elijahverdoorn.com
URL de la Página de Ayuda https://elijahverdoorn.com/contact
URL de la Página de Política de Privacidad https://elijahverdoorn.com/chrome-tab-duplicator-privacy
Idiomas Soportados 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
}