No-Alt-Mouse-Wheel

Prevent mouse wheel scrolling if alt is pressed

ما هو No-Alt-Mouse-Wheel؟

No-Alt-Mouse-Wheel هو إضافة Chrome تم تطويرها بواسطة Lars Kiesow، والميزة الرئيسية لها هي "Prevent mouse wheel scrolling if alt is pressed".

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

تحميل ملف CRX للإضافة No-Alt-Mouse-Wheel

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

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

                        This comes in handy if system events are already bound to scrolling with modifier keys like for example the window managers desktop zoom accessibility feature which would otherwise cause page-scrolling in Chrome every time it is being used.                    

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

الاسم No-Alt-Mouse-Wheel No-Alt-Mouse-Wheel
ID hhkhclphjffknpneoimgmpegghdfgmjb
عنوان URL الرسمي https://chromewebstore.google.com/detail/no-alt-mouse-wheel/hhkhclphjffknpneoimgmpegghdfgmjb
الوصف Prevent mouse wheel scrolling if alt is pressed
حجم الملف 16.6 KB
عدد التثبيتات 31
النسخة الحالية 0.2
آخر تحديث 2019-03-20
تاريخ النشر 2019-03-14
تقييم 4.50/5 مجموع تقييمات 2
المطور Lars Kiesow
نوع الدفع free
موقع الإضافة https://github.com/lkiesow/chromw-no-alt-mouse-wheel
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "No-Alt-Mouse-Wheel",
    "description": "Prevent mouse wheel scrolling if alt is pressed",
    "version": "0.2",
    "author": "Lars Kiesow",
    "homepage_url": "https:\/\/github.com\/lkiesow\/chromw-no-alt-mouse-wheel",
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "no-alt-wheel.js"
            ]
        }
    ]
}