New Tab Shortcut

Customize chrome shortcut to open a new tab

What is New Tab Shortcut?

New Tab Shortcut is a Chrome extension developed by Stanley Guevara, and its main feature is "Customize chrome shortcut to open a new tab".

Download New Tab Shortcut Extension CRX File

Download New Tab Shortcut extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Simple extension for opening new tab by keyboard shortcut.

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

Extension Basic Information

Name New Tab Shortcut New Tab Shortcut
ID ahnndmdalhingohpcbkfpipelneigkij
Official URL https://chromewebstore.google.com/detail/new-tab-shortcut/ahnndmdalhingohpcbkfpipelneigkij
Description Customize chrome shortcut to open a new tab
File Size 3.16 KB
Installation Count 36
Current Version 1.0
Last Updated 2016-10-16
Publish Date 2016-10-16
Developer Stanley Guevara
Payment Type free
Extension Website https://github.com/stanleyguevara/chrome-new-tab-shortcut
Help Page URL https://github.com/stanleyguevara/chrome-new-tab-shortcut
Supported Languages 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
    }
}