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
官方網址 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]"
}