Scroll Buddy

This extension allows you to automate page scrolling

ما هو Scroll Buddy؟

Scroll Buddy هو إضافة Chrome تم تطويرها بواسطة otoinsa، والميزة الرئيسية لها هي "This extension allows you to automate page scrolling".

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

screenshot
screenshot
screenshot

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

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

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

                        Reading a book online or just tired of scrolling?
The usual auto-scroll plugins just ain't cutting it?

Scroll Buddy is here for you.



Control how many pixels to scroll with each line scrolled

Control the timeframe for scroll motion using milliseconds ( 1000 miliseconds = 1 second)

Right click menu to start/stop scrolling for convenience

Simple, elegant interface


Also the browser toolbar popup closes and starts scrolling when you hit the enter key regardless of focused element.                    

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

الاسم Scroll Buddy Scroll Buddy
ID iijemcphocnlembodanflickfiafjnmk
عنوان URL الرسمي https://chromewebstore.google.com/detail/scroll-buddy/iijemcphocnlembodanflickfiafjnmk
الوصف This extension allows you to automate page scrolling
حجم الملف 1.85 MB
عدد التثبيتات 1,058
النسخة الحالية 1.1
آخر تحديث 2023-12-29
تاريخ النشر 2017-10-30
تقييم 4.94/5 مجموع تقييمات 18
المطور otoinsa
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://digital-ninja.xyz
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "offline_enabled": true,
    "name": "Scroll Buddy",
    "description": "This extension allows you to automate page scrolling",
    "version": "1.1",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js",
            "contextMenus.js"
        ]
    },
    "permissions": [
        "notifications",
        "storage",
        "contextMenus",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon\/icon16.png",
        "32": "icon\/icon32.png",
        "48": "icon\/icon48.png",
        "64": "icon\/icon64.png",
        "128": "icon\/icon128.png"
    },
    "web_accessible_resources": [
        "icon\/icon48.png",
        "missing-values.png"
    ]
}