hamsterGestures

A simple mouse gestures extension

ما هو hamsterGestures؟

hamsterGestures هو إضافة Chrome تم تطويرها بواسطة killhamster، والميزة الرئيسية لها هي "A simple mouse gestures extension".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة hamsterGestures

قم بتنزيل ملفات الامتداد hamsterGestures بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        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"
}