Tablet Gestures

Use 2 finger swipes to control your browser. Supports 8 directions with configurable actions. Tablet optimized.

Was ist Tablet Gestures?

Tablet Gestures ist eine Chrome-Erweiterung, die von em_te entwickelt wurde, und ihr Hauptmerkmal ist "Use 2 finger swipes to control your browser. Supports 8 directions with configurable actions. Tablet optimized.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Tablet Gestures-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tablet Gestures-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

                        A device with a multi-touch screen (such as a tablet) is required.

Supported actions include:

- open a new tab
- close current tab
- go to left tab
- go to right tab
- go back in current page
- go forward in current page
- duplicate current tab
- reload current tab

The default configuration is:

- open new tab on "up" gesture
- close current tab on "down" gesture
- focus left tab on diagonal "top-left" gesture or diagonal "bottom-left" gesture
- focus right tab on diagonal "bottom-right" gesture or diagonal "top-right" gesture


The gesture is only recognized if your fingers move in parallel in the same direction. If you do "pinches", it will not respond, because the pinch is reserved for zooming the page.

You can also configure how many fingers are required to perform gestures in case 2 fingers is too easy to accidentally activate.

You can also configure how long the fingers need to travel (in pixels) before a gesture is recognized. The default is 110 pixels which is suitable for medium-sized devices.

You don't need to lift your fingers at the end for the gesture to recognize. Just keep moving them in the desired direction and once it reaches the threshold the gesture will activate automatically.                    

Grundlegende Informationen zur Erweiterung

Name Tablet Gestures Tablet Gestures
ID adpfjochlgeifbpfnlchcdcmoaafnoim
Offizielle URL https://chromewebstore.google.com/detail/tablet-gestures/adpfjochlgeifbpfnlchcdcmoaafnoim
Beschreibung Use 2 finger swipes to control your browser. Supports 8 directions with configurable actions. Tablet optimized.
Dateigröße 16.75 KB
Installationsanzahl 972
Aktuelle Version 0.1.1
Letztes Update 2021-02-08
Veröffentlichungsdatum 2020-02-04
Bewertung 2.52/5 Insgesamt 21 Bewertungen
Entwickler em_te
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://em-te.github.io/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tablet Gestures",
    "author": "Terry Yuen",
    "version": "0.1.1",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "24": "icon_24.png",
        "38": "icon_38.png",
        "48": "icon_48.png",
        "96": "icon_96.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "browser_action": {
        "default_icon": {
            "24": "icon_24.png",
            "38": "icon_38.png",
            "48": "icon_48.png",
            "96": "icon_96.png"
        }
    }
}