Mousetures

Mouse and rocker gestures for tab switching, closing, and reloading

What is Mousetures?

Mousetures is a Chrome extension developed by Dan Wendorf, and its main feature is "Mouse and rocker gestures for tab switching, closing, and reloading".

Download Mousetures Extension CRX File

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

                        Close, refresh, and switch tabs with simple mouse gestures.

To close, hold the right mouse button, drag down, and release.
To refresh, hold the right mouse button, drag down then up, and release.

Switch tabs using mouse rocker gestures. To switch to the tab to the right of your current tab, hold the left mouse button and right-click. To switch to the tab to the left of your current tab, hold the right mouse button and left-click. To cycle through multiple tabs, keep holding the mouse button, and click repeatedly.                    

Extension Basic Information

Name Mousetures Mousetures
ID fadopffbmckhlapnajkgbgldgpcebfid
Official URL https://chrome.google.com/webstore/detail/mousetures/fadopffbmckhlapnajkgbgldgpcebfid
Description Mouse and rocker gestures for tab switching, closing, and reloading
File Size 9.03 KB
Installation Count 36
Current Version 0.7.0
Last Updated 2015-05-24
Publish Date 2015-05-24
Rating 4.17/5 Total 6 Ratings
Developer Dan Wendorf
Payment Type free
Extension Website https://github.com/wendorf/mousetures
Help Page URL https://github.com/wendorf/mousetures/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mousetures",
    "description": "Mouse and rocker gestures for tab switching, closing, and reloading",
    "version": "0.7.0",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "actions.js",
            "background.js",
            "upgradeContentScripts.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "mouseEventGroup.js",
                "point.js",
                "moveGestures.js",
                "main.js",
                "upgradeContentScriptHelper.js",
                "gestureHandler.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}