Tap To Tab

Double-click (double tap) on a link to open it in a new Tab. Designed for tablets and laptop trackpads.

Tap To Tab란 무엇입니까?

Tap To Tab은(는) em_te에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Double-click (double tap) on a link to open it in a new Tab. Designed for tablets and laptop trackpads."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Tap To Tab 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Designed specifically for touch-screen tablets and laptops with trackpads (which don't have a right-click mouse button).

It works similar to the "open link in new tab" option in the popup menu when you right-click on a link, but this method is faster, because right-clicking is a slow process without an external mouse.

No longer will you have to hold down the button and wait for the popup menu, or perform complex mouse gestures to accomplish this seemingly common task.

Just double tap or double click on the link to open it in a new tab.

In the settings window you can change whether (1) tabs open at front; (2) tabs open next to current tab; (3) blacklist certain websites.                    

확장 프로그램 기본 정보

이름 Tap To Tab Tap To Tab
ID enhajhmncplakageabmopgpodkdgcodd
공식 URL https://chromewebstore.google.com/detail/tap-to-tab/enhajhmncplakageabmopgpodkdgcodd
설명 Double-click (double tap) on a link to open it in a new Tab. Designed for tablets and laptop trackpads.
파일 크기 30.01 KB
설치 횟수 6,584
현재 버전 0.5.5
최근 업데이트 2021-05-21
출시 날짜 2020-05-09
평점 4.74/5 총 31 개의 평점
개발자 em_te
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.github.com/em-te
개인정보 보호 정책 페이지 URL https://em-te.github.io/privacy
지원되는 언어 de,en,fr,nl,es,ru,th,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tap To Tab",
    "author": "Terry Yuen",
    "version": "0.5.5",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "20": "openinnewtab_20.png",
        "48": "openinnewtab_48.png",
        "96": "openinnewtab_96.png",
        "128": "openinnewtab_128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    }
}