Basic Gestures

Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.

Basic Gesturesとは何ですか?

Basic GesturesはBPSによって開発されたChromeの拡張機能で、その主な機能は「Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.」です。

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

screenshot

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

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

拡張機能の使用方法

                        This simple extension adds basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.

Hold down right mouse button, move mouse and then release button to execute one of the following commands.

Left         => Back
Right       => Forward
Up           => Scroll to top or Open new tab (can be changed in the preferences)
Down      => Scroll to bottom
Down + Right => Close current tab
Right + Down => Close current tab   

Linux and Mac users: Press right mouse button twice to open context menu.

New in version 1.4:
-------------------------------
Migration to Manifest V3

New in version 1.3:
-------------------------------
New gesture: Up => Scroll to top
New gesture: Down => Scroll to bottom
New option: Up = "Open new tab" instead of "Scroll to top"                    

拡張機能の基本情報

名前 Basic Gestures Basic Gestures
ID fjiafbapfbgehmngjallajbeljllmkfj
公式URL https://chromewebstore.google.com/detail/basic-gestures/fjiafbapfbgehmngjallajbeljllmkfj
説明 Basic mouse gestures for back/forward, new/close tab and scroll to top/bottom.
ファイルサイズ 13.73 KB
インストール数 1,146
現在のバージョン 1.4
最終更新日 2022-08-19
公開日 2016-11-08
評価 4.44/5 合計 16 レビュー
開発者 BPS
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Basic Gestures",
    "version": "1.4",
    "description": "Basic mouse gestures for back\/forward, new\/close tab and scroll to top\/bottom.",
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "gestures.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "action": {
        "default_icon": "icons\/icon_19.png"
    }
}