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
官方網址 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
    }
}