SimpleGestures

A very simple mouse gestures extension

SimpleGesturesとは何ですか?

SimpleGesturesはjunkfactoryによって開発されたChromeの拡張機能で、その主な機能は「A very simple mouse gestures extension」です。

拡張機能のスクリーンショット

screenshot
screenshot

SimpleGestures拡張機能のCRXファイルをダウンロード

SimpleGestures拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Very simple and base mouse gestures for chrome. Based from miniGestures extension completely simplified and open source. https://github.com/junkfactory/chrome-simple-gestures

0.5 - Improve open link in new tab - thanks Lars Brand
0.4 - Assign gestures to open custom urls in a new tab (beta)
0.3 - Add rocker gesture to switch between next or previous tab. (enable in options)
0.2 - Add app icon
0.1 - Initial release                    

拡張機能の基本情報

名前 SimpleGestures SimpleGestures
ID cedlkmdalbapegbnlmfammochkpbheig
公式URL https://chromewebstore.google.com/detail/simplegestures/cedlkmdalbapegbnlmfammochkpbheig
説明 A very simple mouse gestures extension
ファイルサイズ 33.08 KB
インストール数 117
現在のバージョン 0.5
最終更新日 2024-02-25
公開日 2021-07-12
評価 5.00/5 合計 2 レビュー
開発者 junkfactory
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/junkfactory/chrome-simple-gestures
ヘルプページのURL https://github.com/junkfactory/chrome-simple-gestures/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SimpleGestures",
    "version": "0.5",
    "description": "A very simple mouse gestures extension",
    "action": {
        "default_title": "Click for SimpleGestures options",
        "default_popup": "options.html"
    },
    "icons": {
        "128": "app_icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib.js",
                "canvas.js",
                "simple_gestures.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}