Mouse Gestures

The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…

ما هو Mouse Gestures؟

Mouse Gestures هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…".

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

screenshot

تحميل ملف CRX للإضافة Mouse Gestures

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

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

                        The extension currently allows 2 mouse gestures: back and forward.  Hold right mouse button pressed and move mouse left - that affects as back. Hold right mouse button pressed and move mouse right - that affects as forward. Don't be scared of mouse track - it will disappear when the button is released!                    

معلومات أساسية عن التمديد

الاسم Mouse Gestures Mouse Gestures
ID mihlicfjbknojccbmgepbbgpndhibbng
عنوان URL الرسمي https://chromewebstore.google.com/detail/mouse-gestures/mihlicfjbknojccbmgepbbgpndhibbng
الوصف The extension currently allows 2 mouse gestures: back and forward. Hold right mouse button pressed and move mouse left - that…
حجم الملف 11.54 KB
عدد التثبيتات 13
النسخة الحالية 1.0
آخر تحديث 2020-04-20
تاريخ النشر 2020-04-16
المطور Unknown
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Gestures",
    "version": "1.0",
    "manifest_version": 2,
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}