Scroll Speed

Change the scroll speed

ما هو Scroll Speed؟

Scroll Speed هو إضافة Chrome تم تطويرها بواسطة Bert Hekman، والميزة الرئيسية لها هي "Change the scroll speed".

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

screenshot

تحميل ملف CRX للإضافة Scroll Speed

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

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

                        Change the scrolling speed of the mouse wheel                    

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

الاسم Scroll Speed Scroll Speed
ID mfmhdfkinffhnfhaalnabffcfjgcmdhl
عنوان URL الرسمي https://chromewebstore.google.com/detail/scroll-speed/mfmhdfkinffhnfhaalnabffcfjgcmdhl
الوصف Change the scroll speed
حجم الملف 10.95 KB
عدد التثبيتات 3,683
النسخة الحالية 0.1
آخر تحديث 2020-04-27
تاريخ النشر 2020-04-23
تقييم 4.28/5 مجموع تقييمات 29
المطور Bert Hekman
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/DemonTPx/chrome-scroll-speed
عنوان صفحة المساعدة https://github.com/DemonTPx/chrome-scroll-speed/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroll Speed",
    "version": "0.1",
    "description": "Change the scroll speed",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "exclude_globs": [
                "*.pdf"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "manifest_version": 2
}