SimpleGestures

A very simple mouse gestures extension

Cos'è SimpleGestures?

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

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione SimpleGestures

Scarica i file di estensione SimpleGestures 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

                        Very simple and base mouse gestures for chrome. Based from miniGestures extension completely simplified and open source. https://github.com/junkfactory/chrome-simple-gestures

0.5 - Improve open link in new tab - thanks Lars Brand
0.4 - Assign gestures to open custom urls in a new tab (beta)
0.3 - Add rocker gesture to switch between next or previous tab. (enable in options)
0.2 - Add app icon
0.1 - Initial release                    

Informazioni di Base sull'Estensione

Nome SimpleGestures SimpleGestures
ID cedlkmdalbapegbnlmfammochkpbheig
URL Ufficiale https://chromewebstore.google.com/detail/simplegestures/cedlkmdalbapegbnlmfammochkpbheig
Descrizione A very simple mouse gestures extension
Dimensione del File 33.08 KB
Conteggio Installazioni 117
Versione Corrente 0.5
Ultimo Aggiornamento 2024-02-25
Data di Pubblicazione 2021-07-12
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore junkfactory
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/junkfactory/chrome-simple-gestures
URL della Pagina di Aiuto https://github.com/junkfactory/chrome-simple-gestures/issues
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SimpleGestures",
    "version": "0.5",
    "description": "A very simple mouse gestures extension",
    "action": {
        "default_title": "Click for SimpleGestures options",
        "default_popup": "options.html"
    },
    "icons": {
        "128": "app_icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib.js",
                "canvas.js",
                "simple_gestures.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}