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 là gì?

Simple Mouse Gestures là một tiện ích mở rộng Chrome được phát triển bởi lukasz.rydzkowski, và tính năng chính của nó là "Extension that provides the ability to define mouse gestures that will run specific actions in your Google Chrome browser".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Simple Mouse Gestures

Tải xuống các tệp mở rộng Simple Mouse Gestures dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Simple Mouse Gestures Simple Mouse Gestures
ID niailegbonoknccjigjjaijppileoilm
URL Chính Thức https://chromewebstore.google.com/detail/simple-mouse-gestures/niailegbonoknccjigjjaijppileoilm
Mô tả Extension that provides the ability to define mouse gestures that will run specific actions in your Google Chrome browser
Kích Thước Tệp 980 KB
Số Lần Cài Đặt 137
Phiên Bản Hiện Tại 0.3.3 beta
Cập Nhật Lần Cuối 2024-02-20
Ngày Phát Hành 2023-01-29
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển lukasz.rydzkowski
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lrydzkowski/SimpleMouseGestures
Ngôn Ngữ Được Hỗ Trợ 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]"
}