Mouse Gestures

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

What is Mouse Gestures?

Mouse Gestures is a Chrome extension developed by Unknown, and its main feature is "The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…".

Extension Screenshots

screenshot

Download Mouse Gestures Extension CRX File

Download Mouse Gestures extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Mouse Gestures Mouse Gestures
ID mihlicfjbknojccbmgepbbgpndhibbng
Official URL https://chromewebstore.google.com/detail/mouse-gestures/mihlicfjbknojccbmgepbbgpndhibbng
Description The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…
File Size 11.54 KB
Installation Count 13
Current Version 1.0
Last Updated 2020-04-20
Publish Date 2020-04-16
Developer Unknown
Payment Type free
Supported Languages 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"
    }
}