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
官方網址 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"
    }
}