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ファイルをダウンロード

Tap To Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}