Open New Tab Here

A shortcut to open a new tab next to the current one

Open New Tab Here란 무엇입니까?

Open New Tab Here은(는) Gilmore Davidson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A shortcut to open a new tab next to the current one"입니다.

확장 프로그램 스크린샷

screenshot

Open New Tab Here 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        By default, Chrome will only open a new tab at the very end of the row of tabs, which isn’t always what you want. This is a quick shortcut to open a new tab to the right of the one you’re currently viewing.

You can either use the button to the right of the address bar, or a configurable keyboard shortcut. The default keyboard shortcut is:

• For Windows & Linux: Alt + T
• For macOS: Ctrl + T

There is also a shortcut to open the new tab in the background instead of switching to it straight away:

• For Windows & Linux: Alt + Shift + T
• For macOS: Ctrl + Shift + T

You can change these shortcuts by going to chrome://extensions/shortcuts

The code is open source at https://github.com/gilmoreorless/chrome-new-tab-here                    

확장 프로그램 기본 정보

이름 Open New Tab Here Open New Tab Here
ID kpoogeanhkgkbkagbgeibbokbjdbjodb
공식 URL https://chromewebstore.google.com/detail/open-new-tab-here/kpoogeanhkgkbkagbgeibbokbjdbjodb
설명 A shortcut to open a new tab next to the current one
파일 크기 15.7 KB
설치 횟수 688
현재 버전 1.1.0
최근 업데이트 2021-04-14
출시 날짜 2017-07-11
평점 4.76/5 총 21 개의 평점
개발자 Gilmore Davidson
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/gilmoreorless/chrome-new-tab-here
도움말 페이지 URL https://github.com/gilmoreorless/chrome-new-tab-here/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open New Tab Here",
    "short_name": "New Tab Here",
    "version": "1.1.0",
    "description": "A shortcut to open a new tab next to the current one",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "listener.js"
        ]
    },
    "browser_action": {
        "default_title": "Open a new tab next to the current one"
    },
    "commands": {
        "new-tab-here": {
            "suggested_key": {
                "default": "Alt+T",
                "mac": "MacCtrl+T"
            },
            "description": "Open a new tab next to the current one"
        },
        "new-tab-here-background": {
            "suggested_key": {
                "default": "Alt+Shift+T",
                "mac": "MacCtrl+Shift+T"
            },
            "description": "Open a new tab in the background next to the current one"
        }
    }
}