SimpleGestures

A very simple mouse gestures extension

SimpleGestures là gì?

SimpleGestures là một tiện ích mở rộng Chrome được phát triển bởi junkfactory, và tính năng chính của nó là "A very simple mouse gestures extension".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng SimpleGestures 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

                        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                    

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

Tên SimpleGestures SimpleGestures
ID cedlkmdalbapegbnlmfammochkpbheig
URL Chính Thức https://chromewebstore.google.com/detail/simplegestures/cedlkmdalbapegbnlmfammochkpbheig
Mô tả A very simple mouse gestures extension
Kích Thước Tệp 33.08 KB
Số Lần Cài Đặt 117
Phiên Bản Hiện Tại 0.5
Cập Nhật Lần Cuối 2024-02-25
Ngày Phát Hành 2021-07-12
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển junkfactory
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/junkfactory/chrome-simple-gestures
URL Trang Trợ Giúp https://github.com/junkfactory/chrome-simple-gestures/issues
Ngôn Ngữ Được Hỗ Trợ 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
    }
}