Mousetures

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

Wat is Mousetures?

Mousetures is een Chrome-extensie ontwikkeld door Dan Wendorf, en de belangrijkste functie is "Mouse and rocker gestures for tab switching, closing, and reloading".

Download het CRX-bestand van de extensie Mousetures

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

                        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.                    

Basisinformatie over de Extensie

Naam Mousetures Mousetures
ID fadopffbmckhlapnajkgbgldgpcebfid
Officiële URL https://chrome.google.com/webstore/detail/mousetures/fadopffbmckhlapnajkgbgldgpcebfid
Beschrijving Mouse and rocker gestures for tab switching, closing, and reloading
Bestandsgrootte 9.03 KB
Aantal Installaties 36
Huidige Versie 0.7.0
Laatst Bijgewerkt 2015-05-24
Publicatiedatum 2015-05-24
Beoordeling 4.17/5 Totaal 6 Beoordelingen
Ontwikkelaar Dan Wendorf
Betalingswijze free
Extensiewebsite https://github.com/wendorf/mousetures
Help Pagina-URL https://github.com/wendorf/mousetures/issues
Ondersteunde Talen 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
    }
}