hamsterGestures

A simple mouse gestures extension

What is hamsterGestures?

hamsterGestures is a Chrome extension developed by killhamster, and its main feature is "A simple mouse gestures extension".

Extension Screenshots

screenshot

Download hamsterGestures Extension CRX File

Download hamsterGestures 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

                        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.                    

Extension Basic Information

Name hamsterGestures hamsterGestures
ID onhffgjaaedecbofdpifakjfgkkalhde
Official URL https://chromewebstore.google.com/detail/hamstergestures/onhffgjaaedecbofdpifakjfgkkalhde
Description A simple mouse gestures extension
File Size 24.21 KB
Installation Count 20
Current Version 1.0.1
Last Updated 2021-04-20
Publish Date 2021-04-19
Rating 5.00/5 Total 2 Ratings
Developer killhamster
Email [email protected]
Payment Type free
Supported Languages 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"
}