SimpleGestures

A very simple mouse gestures extension

SimpleGesturesคืออะไร?

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

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

screenshot
screenshot

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

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

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

                        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                    

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

ชื่อ SimpleGestures SimpleGestures
ID cedlkmdalbapegbnlmfammochkpbheig
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/simplegestures/cedlkmdalbapegbnlmfammochkpbheig
คำอธิบาย A very simple mouse gestures extension
ขนาดไฟล์ 33.08 KB
จำนวนการติดตั้ง 117
เวอร์ชันปัจจุบัน 0.5
อัปเดตครั้งล่าสุด 2024-02-25
วันที่เผยแพร่ 2021-07-12
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา junkfactory
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/junkfactory/chrome-simple-gestures
URL หน้าช่วยเหลือ https://github.com/junkfactory/chrome-simple-gestures/issues
ภาษาที่รองรับ 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
    }
}