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
电子邮箱 [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
    }
}