New Tab Shortcut

Customize chrome shortcut to open a new tab

什么是New Tab Shortcut?

New Tab Shortcut是由Stanley Guevara开发的Chrome扩展程序,该扩展的主要功能是“Customize chrome shortcut to open a new tab”。

下载New Tab Shortcut扩展crx文件

下载New Tab Shortcut扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Simple extension for opening new tab by keyboard shortcut.

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

扩展基本信息

名称 New Tab Shortcut New Tab Shortcut
ID ahnndmdalhingohpcbkfpipelneigkij
官方URL https://chromewebstore.google.com/detail/new-tab-shortcut/ahnndmdalhingohpcbkfpipelneigkij
简介 Customize chrome shortcut to open a new tab
文件大小 3.16 KB
安装次数 36
当前版本 1.0
更新时间 2016-10-16
上架时间 2016-10-16
开发者 Stanley Guevara
付费类型 free
扩展官网 https://github.com/stanleyguevara/chrome-new-tab-shortcut
帮助页面URL https://github.com/stanleyguevara/chrome-new-tab-shortcut
支持的语言 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
    }
}