Trackpad Gestures

Increase browsing productivity by performing custom actions with simple mouse gestures

Apa itu Trackpad Gestures?

Trackpad Gestures adalah ekstensi Chrome yang dikembangkan oleh st.ext, dan fitur utamanya adalah "Increase browsing productivity by performing custom actions with simple mouse gestures".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Trackpad Gestures

Unduh file ekstensi Trackpad Gestures dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Trackpad Gestures Trackpad Gestures
ID fidihidllbemadhflngbncjcjjbkfecj
URL Resmi https://chromewebstore.google.com/detail/trackpad-gestures/fidihidllbemadhflngbncjcjjbkfecj
Deskripsi Increase browsing productivity by performing custom actions with simple mouse gestures
Ukuran File 21.09 KB
Jumlah Instalasi 393
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2023-04-06
Tanggal Publikasi 2021-01-04
Penilaian 3.75/5 Total 4 Penilaian
Pengembang st.ext
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
}