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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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."
        }
    }
}