Mouse Gestures

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

Mouse Gestures là gì?

Mouse Gestures là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mouse Gestures

Tải xuống các tệp mở rộng Mouse Gestures dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mouse Gestures Mouse Gestures
ID mihlicfjbknojccbmgepbbgpndhibbng
URL Chính Thức https://chromewebstore.google.com/detail/mouse-gestures/mihlicfjbknojccbmgepbbgpndhibbng
Mô tả The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…
Kích Thước Tệp 11.54 KB
Số Lần Cài Đặt 13
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-04-20
Ngày Phát Hành 2020-04-16
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}