Global New Tab Shortcut

This allows you to open a new tab from within any application with a keyboard shortcut. This means that as soon as you think of a…

什么是Global New Tab Shortcut?

Global New Tab Shortcut是由Wout Mertens开发的Chrome扩展程序,该扩展的主要功能是“This allows you to open a new tab from within any application with a keyboard shortcut. This means that as soon as you think of a…”。

扩展截图

screenshot

下载Global New Tab Shortcut扩展crx文件

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

扩展使用说明

                        This allows you to open a new tab from within any application with a keyboard shortcut.

This means that as soon as you think of a search to do or web page to open, you are just one keypress away from doing it.

!!! You MUST select a keyboard shortcut after installing !!!

To use, install the extension and then click on "Keyboard Shortcuts" at the bottom of the extensions page. There, select a shortcut key for "Global New Tab Shortcut" and be sure to change the dropdown to "Global" afterwards.

This extension doesn't add handlers to pages or anything fishy. It uses the built-in Chrome keyboard shortcut handling to create a new tab with the built-in Chrome APIs.

Source is at https://github.com/wmertens/global-chrome-tab                    

扩展基本信息

名称 Global New Tab Shortcut Global New Tab Shortcut
ID dcngopenklmnfdlfocljeaokkhcplong
官方URL https://chromewebstore.google.com/detail/global-new-tab-shortcut/dcngopenklmnfdlfocljeaokkhcplong
简介 This allows you to open a new tab from within any application with a keyboard shortcut. This means that as soon as you think of a…
文件大小 22.54 KB
安装次数 178
当前版本 1.2.1
更新时间 2022-11-02
上架时间 2016-06-18
评分 4.13/5 共8次评分
开发者 Wout Mertens
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/wmertens/global-chrome-tab
帮助页面URL https://github.com/wmertens/global-chrome-tab/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Global New Tab Shortcut",
    "version": "1.2.1",
    "manifest_version": 3,
    "icons": {
        "128": "new-tab.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "new-tab": {
            "suggested_key": {
                "default": "Alt+G",
                "mac": "Command+Shift+S",
                "linux": "Alt+G"
            },
            "description": "Switch to a new tab from any application, ready for searching!"
        },
        "new-window": {
            "description": "Switch to a new window from any application, ready for searching!"
        },
        "new-incognito-window": {
            "description": "Switch to a new *incognito* window from any application, ready for searching! To use this, you need to check the \"Allow in incognito\" checkbox of the extension."
        }
    }
}