Eight Mouse Gestures

Restore closed tabs, open links in new tab (window or private window), go back and forth in history, scroll to top or bottom

Τι είναι το Eight Mouse Gestures;

Το Eight Mouse Gestures είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον marc b, και η κύρια λειτουργία του είναι "Restore closed tabs, open links in new tab (window or private window), go back and forth in history, scroll to top or bottom".

Στιγμιότυπα Επέκτασης

screenshot

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

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

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

                        Eight Mouse Gestures will increase your productivity, by saving you time and effort. In half a second, by an unique tiny move, you will go back to the previous page, open links in new tabs, jump to the top of a page or even bring back closed tabs.

You want to surf efficiently, right now, with no efforts? Eight Mouse Gestures was made for you. No need to learn complicated gestures. No need to draw some pentagon just to reload a page. No need to dig into a bunch of options for hours (in fact there is no options at all!). Eight Mouse Gestures was thought to be ready-to-use, straightforward, fast and yet powerful.

How does it work ?

To use this mouse gesture add-on, hold the right-mouse button (hold the right click), move in one direction and then release the right mouse button. You can use diagonal directions. Hence, you have eight different features for the eight different direction : this gives you Eight Mouse Gestures (smart, right?). If you do the gesture on a link, you have some different features.

Here, a list of the features, for the all the different directions, depending if you started to hold the right button on a link or not.

    If you do NOT start to hold the right-button on a link
        West (Left) : Go back in history
        East (Right) : Go forward in history
        North (Up) : Open a new empty tab
        South (Down) : Close the current tab
        NW (North West, diagonal Up-Left) : Scroll to the top of the page
        SW (South West, diagonal Down-Left) : Scroll to the bottom of the page
        NE (North East, diagonal Up-Right) : Reload the page
        SE (South East, diagonal Down-Right) : Open lastly closed tab 

    If you DO start to hold the right-button on a link
        West (Left) : Go back in history (The same as if there was no link)
        East (Right) : Go forward in history (The same as if there was no link)
        North (Up) : Open link in a new active tab
        South (Down) : Open link in a new windows
        NW (North West, diagonal Up-Left) : Scroll to the top of the page (The same as if there was no link)
        SW (South West, diagonal Down-Left) : Scroll to the bottom of the page (The same as if there was no link)
        NE (North East, diagonal Up-Right) : Open link in a new background tab (it means that the link loads in a new tab while you keep staying on your current tab)
        SE (South East, diagonal Down-Right) : Open link in a new private windows                    

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

Όνομα Eight Mouse Gestures Eight Mouse Gestures
ID jccmhgfnlcolblgejajkhdpdddpebpbi
Επίσημο URL https://chromewebstore.google.com/detail/eight-mouse-gestures/jccmhgfnlcolblgejajkhdpdddpebpbi
Περιγραφή Restore closed tabs, open links in new tab (window or private window), go back and forth in history, scroll to top or bottom
Μέγεθος Αρχείου 13.1 KB
Αριθμός Εγκαταστάσεων 91
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2018-12-05
Ημερομηνία Δημοσίευσης 2018-11-30
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής marc b
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Eight Mouse Gestures",
    "short_name": "EightGesture",
    "version": "1.0.1",
    "author": "Marc Bourrez",
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "description": "Restore closed tabs, open links in new tab (window or private window), go back and forth in history, scroll to top or bottom",
    "permissions": [
        "sessions"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "js": [
                "eightgesture.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ]
}