Smooth Scroller

Automatically scroll a page smoothly by pressing the "s" key

ما هو Smooth Scroller؟

Smooth Scroller هو إضافة Chrome تم تطويرها بواسطة katherinepeterson96، والميزة الرئيسية لها هي "Automatically scroll a page smoothly by pressing the "s" key".

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

screenshot

تحميل ملف CRX للإضافة Smooth Scroller

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

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

                        Scroll down a webpage at a smooth pace with the press of a button.
Great for recording product/site demos or skimming a webpage. 

Press "S" to scroll.

Press "A" to scroll slowly
Press "D" to scroll fast

Press again to stop.                    

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

الاسم Smooth Scroller Smooth Scroller
ID hjgekbidepgklcmfjmnhdkgjbdodhggb
عنوان URL الرسمي https://chromewebstore.google.com/detail/smooth-scroller/hjgekbidepgklcmfjmnhdkgjbdodhggb
الوصف Automatically scroll a page smoothly by pressing the "s" key
حجم الملف 6.94 KB
عدد التثبيتات 38
النسخة الحالية 1.0
آخر تحديث 2021-02-11
تاريخ النشر 2021-02-10
تقييم 3.00/5 مجموع تقييمات 2
المطور katherinepeterson96
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smooth Scroller",
    "description": "Automatically scroll a page smoothly by pressing the \"s\" key",
    "version": "1.0",
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}