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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}