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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
    }
}