Tap To Tab

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

¿Qué es Tap To Tab?

Tap To Tab es una extensión de Chrome desarrollada por em_te, y su función principal es "Double-click (double tap) on a link to open it in a new Tab. Designed for tablets and laptop trackpads.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Tap To Tab

Descarga archivos de extensión Tap To Tab en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Tap To Tab Tap To Tab
ID enhajhmncplakageabmopgpodkdgcodd
URL Oficial https://chromewebstore.google.com/detail/tap-to-tab/enhajhmncplakageabmopgpodkdgcodd
Descripción Double-click (double tap) on a link to open it in a new Tab. Designed for tablets and laptop trackpads.
Tamaño del Archivo 30.01 KB
Cantidad de Instalaciones 6,584
Versión Actual 0.5.5
Última Actualización 2021-05-21
Fecha de Publicación 2020-05-09
Calificación 4.74/5 Total de 31 Calificaciones
Desarrollador em_te
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.github.com/em-te
URL de la Página de Política de Privacidad https://em-te.github.io/privacy
Idiomas Soportados 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"
    }
}