hamsterGestures

A simple mouse gestures extension

Cos'è hamsterGestures?

hamsterGestures è un'estensione di Chrome sviluppata da killhamster, e la sua funzione principale è "A simple mouse gestures extension".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione hamsterGestures

Scarica i file di estensione hamsterGestures in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome hamsterGestures hamsterGestures
ID onhffgjaaedecbofdpifakjfgkkalhde
URL Ufficiale https://chromewebstore.google.com/detail/hamstergestures/onhffgjaaedecbofdpifakjfgkkalhde
Descrizione A simple mouse gestures extension
Dimensione del File 24.21 KB
Conteggio Installazioni 20
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-04-20
Data di Pubblicazione 2021-04-19
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore killhamster
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
}