Trackpad Gestures

Increase browsing productivity by performing custom actions with simple mouse gestures

¿Qué es Trackpad Gestures?

Trackpad Gestures es una extensión de Chrome desarrollada por st.ext, y su función principal es "Increase browsing productivity by performing custom actions with simple mouse gestures".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Trackpad Gestures

Descarga archivos de extensión Trackpad Gestures 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

                        Trackpad Gestures

This extension allows users to use mouse gestures in conjunction with
keyboard or mouse right-click triggers to perform custom assigned actions

Features:

- Gesture Detection for movement on the vertical, horizontal, and diagonal axes
- Slide Bar for controlling sensitivity of gesture
- Playground for testing gestures

Gestures currently supported:

- Move Down
- Move Up
- Move Top Right
- Move Down Right
- Move Left
- Move Right
- Move Down Left
- Move Top Left

Triggers currently supported:

- Alt key
- Ctrl key
- Right Click

(Note: When using the Right Mouse Button as a trigger, only double right clicks would open the context menu of the browser)

Actions currently supported:

- Open New Tab
- Open New Background Tab
- Close Active Tab
- Reopen Recently Closed Tab
- Reload Active Tab
- Navigate Backwards
- Navigate Forwards
- Open New Window
- Close Active Window
- Go Home
- Reload Active Tab (Hard Refresh)
- Do Nothing                    

Información Básica de la Extensión

Nombre Trackpad Gestures Trackpad Gestures
ID fidihidllbemadhflngbncjcjjbkfecj
URL Oficial https://chromewebstore.google.com/detail/trackpad-gestures/fidihidllbemadhflngbncjcjjbkfecj
Descripción Increase browsing productivity by performing custom actions with simple mouse gestures
Tamaño del Archivo 21.09 KB
Cantidad de Instalaciones 393
Versión Actual 1.0.0
Última Actualización 2023-04-06
Fecha de Publicación 2021-01-04
Calificación 3.75/5 Total de 4 Calificaciones
Desarrollador st.ext
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trackpad Gestures",
    "version": "1.0.0",
    "author": "st.ext",
    "description": "Increase browsing productivity by performing custom actions with simple mouse gestures",
    "permissions": [
        "storage",
        "sessions",
        "tabs",
        "scripting",
        "history"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "static\/js\/background_v3.js"
    },
    "action": {
        "default_popup": "views\/popup_v3.html",
        "default_icon": {
            "16": "views\/icons\/research.png"
        }
    },
    "options_ui": {
        "page": "views\/options_v3.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "static\/js\/content_script_v3.js"
            ]
        }
    ],
    "manifest_version": 3
}