Mousetures

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

Was ist Mousetures?

Mousetures ist eine Chrome-Erweiterung, die von Dan Wendorf entwickelt wurde, und ihr Hauptmerkmal ist "Mouse and rocker gestures for tab switching, closing, and reloading".

Mousetures-Erweiterungs-CRX-Datei herunterladen

Laden Sie Mousetures-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Mousetures Mousetures
ID fadopffbmckhlapnajkgbgldgpcebfid
Offizielle URL https://chrome.google.com/webstore/detail/mousetures/fadopffbmckhlapnajkgbgldgpcebfid
Beschreibung Mouse and rocker gestures for tab switching, closing, and reloading
Dateigröße 9.03 KB
Installationsanzahl 36
Aktuelle Version 0.7.0
Letztes Update 2015-05-24
Veröffentlichungsdatum 2015-05-24
Bewertung 4.17/5 Insgesamt 6 Bewertungen
Entwickler Dan Wendorf
Zahlungsart free
Erweiterungswebsite https://github.com/wendorf/mousetures
Hilfeseite URL https://github.com/wendorf/mousetures/issues
Unterstützte Sprachen 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
    }
}