hamsterGestures

A simple mouse gestures extension

hamsterGesturesとは何ですか?

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

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

screenshot

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

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

拡張機能の使用方法

                        Adds a few simple mouse gestures to Chrome, similar to the gestures found in the old Opera browser. Allows for rocker gestures (quickly pressing LR or RL) along with opening links in new tabs and forward/back functions.                    

拡張機能の基本情報

名前 hamsterGestures hamsterGestures
ID onhffgjaaedecbofdpifakjfgkkalhde
公式URL https://chromewebstore.google.com/detail/hamstergestures/onhffgjaaedecbofdpifakjfgkkalhde
説明 A simple mouse gestures extension
ファイルサイズ 24.21 KB
インストール数 20
現在のバージョン 1.0.1
最終更新日 2021-04-20
公開日 2021-04-19
評価 5.00/5 合計 2 レビュー
開発者 killhamster
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "hamsterGestures",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon128.png",
        "icons": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "options.html",
        "default_title": "hamsterGestures"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "mouseTrack.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "version": "1.0.1",
    "description": "A simple mouse gestures extension"
}