Mouse Gestures

The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…

Cos'è Mouse Gestures?

Mouse Gestures è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Mouse Gestures

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

                        The extension currently allows 2 mouse gestures: back and forward.  Hold right mouse button pressed and move mouse left - that affects as back. Hold right mouse button pressed and move mouse right - that affects as forward. Don't be scared of mouse track - it will disappear when the button is released!                    

Informazioni di Base sull'Estensione

Nome Mouse Gestures Mouse Gestures
ID mihlicfjbknojccbmgepbbgpndhibbng
URL Ufficiale https://chromewebstore.google.com/detail/mouse-gestures/mihlicfjbknojccbmgepbbgpndhibbng
Descrizione The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…
Dimensione del File 11.54 KB
Conteggio Installazioni 13
Versione Corrente 1.0
Ultimo Aggiornamento 2020-04-20
Data di Pubblicazione 2020-04-16
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Gestures",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}