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
电子邮箱 [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"
    }
}