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
Eメール [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]"
}