Trackpad Gestures

Increase browsing productivity by performing custom actions with simple mouse gestures

什麼是Trackpad Gestures?

Trackpad Gestures是由st.ext開發的Chrome擴展程式,該擴展的主要功能是“Increase browsing productivity by performing custom actions with simple mouse gestures”。

擴展截圖

screenshot
screenshot

下載Trackpad Gestures擴展crx文件

下載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
官方網址 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
}