Disable AutoScroll

Disables middle-click autoscrolling (often confused with 'smooth scrolling')

ما هو Disable AutoScroll؟

Disable AutoScroll هو إضافة Chrome تم تطويرها بواسطة Slackwise، والميزة الرئيسية لها هي "Disables middle-click autoscrolling (often confused with 'smooth scrolling')".

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

screenshot

تحميل ملف CRX للإضافة Disable AutoScroll

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

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

                        All this extension does is disable the middle-click "AutoScroll" feature so you don't accidentally activate it when trying to middle-click a link with your scroll-wheel to open a link in a new tab.

The screenshot is of the ENTIRE source-code, and it's all on GitHub as well.                    

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

الاسم Disable AutoScroll Disable AutoScroll
ID ggakmjgkpoeoiicikoohgojkoehmnhdc
عنوان URL الرسمي https://chromewebstore.google.com/detail/disable-autoscroll/ggakmjgkpoeoiicikoohgojkoehmnhdc
الوصف Disables middle-click autoscrolling (often confused with 'smooth scrolling')
حجم الملف 13.33 KB
عدد التثبيتات 1,455
النسخة الحالية 1.2
آخر تحديث 2024-01-01
تاريخ النشر 2022-07-14
تقييم 4.58/5 مجموع تقييمات 24
المطور Slackwise
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/Slackwise/disable-autoscroll-webextension
عنوان صفحة المساعدة https://github.com/Slackwise/disable-autoscroll-webextension/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Disable AutoScroll",
    "short_name": "Disable AutoScroll",
    "description": "Disables middle-click autoscrolling (often confused with 'smooth scrolling')",
    "version": "1.2",
    "author": "Slackwise",
    "icons": {
        "48": "disable-autoscroll-48.png",
        "125": "disable-autoscroll-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "disable-autoscroll.js"
            ]
        }
    ]
}