Mouse Gestures

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

Wat is Mouse Gestures?

Mouse Gestures is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Mouse Gestures

Download Mouse Gestures-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Mouse Gestures Mouse Gestures
ID mihlicfjbknojccbmgepbbgpndhibbng
Officiële URL https://chromewebstore.google.com/detail/mouse-gestures/mihlicfjbknojccbmgepbbgpndhibbng
Beschrijving The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…
Bestandsgrootte 11.54 KB
Aantal Installaties 13
Huidige Versie 1.0
Laatst Bijgewerkt 2020-04-20
Publicatiedatum 2020-04-16
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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"
    }
}