hamsterGestures

A simple mouse gestures extension

hamsterGesturesคืออะไร?

hamsterGestures เป็นส่วนขยายของ Chrome ที่พัฒนาโดย killhamster และคุณลักษณะหลักของมันคือ "A simple mouse gestures extension"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย hamsterGestures

ดาวน์โหลดไฟล์ส่วนขยาย hamsterGestures ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ hamsterGestures hamsterGestures
ID onhffgjaaedecbofdpifakjfgkkalhde
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hamstergestures/onhffgjaaedecbofdpifakjfgkkalhde
คำอธิบาย A simple mouse gestures extension
ขนาดไฟล์ 24.21 KB
จำนวนการติดตั้ง 20
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2021-04-20
วันที่เผยแพร่ 2021-04-19
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา killhamster
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
}