Trackpad Gestures

Increase browsing productivity by performing custom actions with simple mouse gestures

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

Το Trackpad Gestures είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον st.ext, και η κύρια λειτουργία του είναι "Increase browsing productivity by performing custom actions with simple mouse gestures".

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

screenshot
screenshot

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

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

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

                        Trackpad Gestures

This extension allows users to use mouse gestures in conjunction with
keyboard or mouse right-click triggers to perform custom assigned actions

Features:

- Gesture Detection for movement on the vertical, horizontal, and diagonal axes
- Slide Bar for controlling sensitivity of gesture
- Playground for testing gestures

Gestures currently supported:

- Move Down
- Move Up
- Move Top Right
- Move Down Right
- Move Left
- Move Right
- Move Down Left
- Move Top Left

Triggers currently supported:

- Alt key
- Ctrl key
- Right Click

(Note: When using the Right Mouse Button as a trigger, only double right clicks would open the context menu of the browser)

Actions currently supported:

- Open New Tab
- Open New Background Tab
- Close Active Tab
- Reopen Recently Closed Tab
- Reload Active Tab
- Navigate Backwards
- Navigate Forwards
- Open New Window
- Close Active Window
- Go Home
- Reload Active Tab (Hard Refresh)
- Do Nothing                    

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

Όνομα Trackpad Gestures Trackpad Gestures
ID fidihidllbemadhflngbncjcjjbkfecj
Επίσημο URL https://chromewebstore.google.com/detail/trackpad-gestures/fidihidllbemadhflngbncjcjjbkfecj
Περιγραφή Increase browsing productivity by performing custom actions with simple mouse gestures
Μέγεθος Αρχείου 21.09 KB
Αριθμός Εγκαταστάσεων 393
Τρέχουσα Έκδοση 1.0.0
Τελευταία Ενημέρωση 2023-04-06
Ημερομηνία Δημοσίευσης 2021-01-04
Αξιολόγηση 3.75/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής st.ext
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trackpad Gestures",
    "version": "1.0.0",
    "author": "st.ext",
    "description": "Increase browsing productivity by performing custom actions with simple mouse gestures",
    "permissions": [
        "storage",
        "sessions",
        "tabs",
        "scripting",
        "history"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "static\/js\/background_v3.js"
    },
    "action": {
        "default_popup": "views\/popup_v3.html",
        "default_icon": {
            "16": "views\/icons\/research.png"
        }
    },
    "options_ui": {
        "page": "views\/options_v3.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "static\/js\/content_script_v3.js"
            ]
        }
    ],
    "manifest_version": 3
}