Mouse Gestures

The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…

什麼是Mouse Gestures?

Mouse Gestures是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…”。

擴展截圖

screenshot

下載Mouse Gestures擴展crx文件

下載Mouse Gestures擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The extension currently allows 2 mouse gestures: back and forward.  Hold right mouse button pressed and move mouse left - that affects as back. Hold right mouse button pressed and move mouse right - that affects as forward. Don't be scared of mouse track - it will disappear when the button is released!                    

擴展基本資訊

名稱 Mouse Gestures Mouse Gestures
ID mihlicfjbknojccbmgepbbgpndhibbng
官方網址 https://chromewebstore.google.com/detail/mouse-gestures/mihlicfjbknojccbmgepbbgpndhibbng
簡介 The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…
檔案大小 11.54 KB
安裝次數 13
目前版本 1.0
更新時間 2020-04-20
上架時間 2020-04-16
開發者 Unknown
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Gestures",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}