Mousetures

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

Τι είναι το Mousetures;

Το Mousetures είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dan Wendorf, και η κύρια λειτουργία του είναι "Mouse and rocker gestures for tab switching, closing, and reloading".

Λήψη αρχείου CRX της επέκτασης Mousetures

Λήψη αρχείων επέκτασης Mousetures σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Mousetures Mousetures
ID fadopffbmckhlapnajkgbgldgpcebfid
Επίσημο URL https://chrome.google.com/webstore/detail/mousetures/fadopffbmckhlapnajkgbgldgpcebfid
Περιγραφή Mouse and rocker gestures for tab switching, closing, and reloading
Μέγεθος Αρχείου 9.03 KB
Αριθμός Εγκαταστάσεων 36
Τρέχουσα Έκδοση 0.7.0
Τελευταία Ενημέρωση 2015-05-24
Ημερομηνία Δημοσίευσης 2015-05-24
Αξιολόγηση 4.17/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής Dan Wendorf
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/wendorf/mousetures
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/wendorf/mousetures/issues
Υποστηριζόμενες Γλώσσες 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
    }
}