Simple Mouse Gestures

Extension that provides the ability to define mouse gestures that will run specific actions in your Google Chrome browser

Simple Mouse Gestures란 무엇입니까?

Simple Mouse Gestures은(는) lukasz.rydzkowski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extension that provides the ability to define mouse gestures that will run specific actions in your Google Chrome browser"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Simple Mouse Gestures 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Google Chrome extension that provides the ability to define mouse gestures that will run specific actions in your browser.

A mouse gesture can be drawn by moving your mouse cursor with the right mouse button pressed inside your browse window. In settings you can attach a mouse gesture with the specific action.

The list of actions possible to attach to mouse gestures:

- Go Back
- Go Forward
- Open New Tab
- Close Current Tab
- Reload Current Tab
- Switch to Left Tab
- Switch to Right Tab
- Close Window
- Minimize Window
- Scroll to Top
- Scroll to Bottom

Other settings:

- Line color
- Line width                    

확장 프로그램 기본 정보

이름 Simple Mouse Gestures Simple Mouse Gestures
ID niailegbonoknccjigjjaijppileoilm
공식 URL https://chromewebstore.google.com/detail/simple-mouse-gestures/niailegbonoknccjigjjaijppileoilm
설명 Extension that provides the ability to define mouse gestures that will run specific actions in your Google Chrome browser
파일 크기 980 KB
설치 횟수 137
현재 버전 0.3.3 beta
최근 업데이트 2024-02-20
출시 날짜 2023-01-29
평점 5.00/5 총 3 개의 평점
개발자 lukasz.rydzkowski
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lrydzkowski/SimpleMouseGestures
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple Mouse Gestures",
    "description": "Extension that provides the ability to define mouse gestures that will run specific actions in your Google Chrome browser",
    "version": "0.3.3",
    "version_name": "0.3.3 beta",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "consts.js",
                "content-scripts\/utils.js",
                "content-scripts\/gestures-handler.js",
                "content-scripts\/canvas-builder.js",
                "content-scripts\/canvas-event-handler.js",
                "content-scripts\/canvas-handler.js",
                "content-scripts\/settings-storage.js",
                "content-scripts\/content-event-handler.js",
                "content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "scripting",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "service-worker.js",
        "type": "module"
    },
    "author": "[email protected]"
}