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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}