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文件

下载Simple Mouse Gestures扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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]"
}