New Tab Shortcut

Customize chrome shortcut to open a new tab

Cos'è New Tab Shortcut?

New Tab Shortcut è un'estensione di Chrome sviluppata da Stanley Guevara, e la sua funzione principale è "Customize chrome shortcut to open a new tab".

Scarica il file CRX dell'estensione New Tab Shortcut

Scarica i file di estensione New Tab Shortcut 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

                        Simple extension for opening new tab by keyboard shortcut.

Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.                    

Informazioni di Base sull'Estensione

Nome New Tab Shortcut New Tab Shortcut
ID ahnndmdalhingohpcbkfpipelneigkij
URL Ufficiale https://chromewebstore.google.com/detail/new-tab-shortcut/ahnndmdalhingohpcbkfpipelneigkij
Descrizione Customize chrome shortcut to open a new tab
Dimensione del File 3.16 KB
Conteggio Installazioni 36
Versione Corrente 1.0
Ultimo Aggiornamento 2016-10-16
Data di Pubblicazione 2016-10-16
Sviluppatore Stanley Guevara
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/stanleyguevara/chrome-new-tab-shortcut
URL della Pagina di Aiuto https://github.com/stanleyguevara/chrome-new-tab-shortcut
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab Shortcut",
    "permissions": [
        "tabs"
    ],
    "version": "1.0",
    "description": "Customize chrome shortcut to open a new tab",
    "commands": {
        "close-tab": {
            "suggested_key": {
                "default": "Alt+Z",
                "mac": "Ctrl+Z"
            },
            "description": "Open a new tab"
        }
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}