hamsterGestures

A simple mouse gestures extension

¿Qué es hamsterGestures?

hamsterGestures es una extensión de Chrome desarrollada por killhamster, y su función principal es "A simple mouse gestures extension".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión hamsterGestures

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

                        Adds a few simple mouse gestures to Chrome, similar to the gestures found in the old Opera browser. Allows for rocker gestures (quickly pressing LR or RL) along with opening links in new tabs and forward/back functions.                    

Información Básica de la Extensión

Nombre hamsterGestures hamsterGestures
ID onhffgjaaedecbofdpifakjfgkkalhde
URL Oficial https://chromewebstore.google.com/detail/hamstergestures/onhffgjaaedecbofdpifakjfgkkalhde
Descripción A simple mouse gestures extension
Tamaño del Archivo 24.21 KB
Cantidad de Instalaciones 20
Versión Actual 1.0.1
Última Actualización 2021-04-20
Fecha de Publicación 2021-04-19
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador killhamster
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": "hamsterGestures",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon128.png",
        "icons": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "options.html",
        "default_title": "hamsterGestures"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "mouseTrack.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "version": "1.0.1",
    "description": "A simple mouse gestures extension"
}