Mouse Gestures

The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…

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

Το Mouse Gestures είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…".

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

screenshot

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

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

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

                        The extension currently allows 2 mouse gestures: back and forward.  Hold right mouse button pressed and move mouse left - that affects as back. Hold right mouse button pressed and move mouse right - that affects as forward. Don't be scared of mouse track - it will disappear when the button is released!                    

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

Όνομα Mouse Gestures Mouse Gestures
ID mihlicfjbknojccbmgepbbgpndhibbng
Επίσημο URL https://chromewebstore.google.com/detail/mouse-gestures/mihlicfjbknojccbmgepbbgpndhibbng
Περιγραφή The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…
Μέγεθος Αρχείου 11.54 KB
Αριθμός Εγκαταστάσεων 13
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-04-20
Ημερομηνία Δημοσίευσης 2020-04-16
Προγραμματιστής Unknown
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Gestures",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}