Duplicate Tab Hotkey

Adds a hotkey for duplicating the current tab.

Cos'è Duplicate Tab Hotkey?

Duplicate Tab Hotkey è un'estensione di Chrome sviluppata da Elijah Verdoorn, e la sua funzione principale è "Adds a hotkey for duplicating the current tab.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Duplicate Tab Hotkey

Scarica i file di estensione Duplicate Tab Hotkey in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Duplicate Tab Hotkey Duplicate Tab Hotkey
ID adgkgjklgiilebgjckenkknhbenpiinc
URL Ufficiale https://chromewebstore.google.com/detail/duplicate-tab-hotkey/adgkgjklgiilebgjckenkknhbenpiinc
Descrizione Adds a hotkey for duplicating the current tab.
Dimensione del File 58.09 KB
Conteggio Installazioni 91
Versione Corrente 1.1.0
Ultimo Aggiornamento 2020-01-24
Data di Pubblicazione 2020-01-24
Sviluppatore Elijah Verdoorn
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://elijahverdoorn.com
URL della Pagina di Aiuto https://elijahverdoorn.com/contact
URL della Pagina della Politica sulla Privacy https://elijahverdoorn.com/chrome-tab-duplicator-privacy
Lingue Supportate 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
}