hamsterGestures

A simple mouse gestures extension

hamsterGestures là gì?

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

Ả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 hamsterGestures

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

                        Adds a few simple mouse gestures to Chrome, similar to the gestures found in the old Opera browser. Allows for rocker gestures (quickly pressing LR or RL) along with opening links in new tabs and forward/back functions.                    

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

Tên hamsterGestures hamsterGestures
ID onhffgjaaedecbofdpifakjfgkkalhde
URL Chính Thức https://chromewebstore.google.com/detail/hamstergestures/onhffgjaaedecbofdpifakjfgkkalhde
Mô tả A simple mouse gestures extension
Kích Thước Tệp 24.21 KB
Số Lần Cài Đặt 20
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-04-20
Ngày Phát Hành 2021-04-19
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển killhamster
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "hamsterGestures",
    "manifest_version": 2,
    "browser_action": {
        "default_icon": "icon128.png",
        "icons": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "options.html",
        "default_title": "hamsterGestures"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "mouseTrack.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "version": "1.0.1",
    "description": "A simple mouse gestures extension"
}