Simple Auto Scroll

Simple speed-customizable auto scroll

Что такое Simple Auto Scroll?

Simple Auto Scroll - это расширение Chrome, разработанное xjpablobrx, и его основная функция - "Simple speed-customizable auto scroll".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Simple Auto Scroll

Скачайте файлы расширений Simple Auto Scroll в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        1. What is it?

A speed-customizable auto-scroll Google Chrome extension.

2. Why?

A lot of times I find myself reading long texfiles, and after a while, I kind of wish I could just read them as if they were a movie. I've tried with the mouse (middle click) thingy, but it's just not practical and adjusting the speed is very tricky - not to mention that a lot of times it's just too fast.

3. Features

This extension allows you to easily change the auto-scroll speed and save it in three different modes; slow, medium and fast. A single click will stop the auto-scrolling.

Note: Does not work in Google related websites.                    

Основная информация о расширении

Название Simple Auto Scroll Simple Auto Scroll
ID dccjkemhmffnljlnnoffljpkhkfpldff
Официальный URL https://chrome.google.com/webstore/detail/simple-auto-scroll/dccjkemhmffnljlnnoffljpkhkfpldff
Описание Simple speed-customizable auto scroll
Размер файла 12.31 KB
Количество установок 40,000
Текущая Версия 0.1.4
Последнее Обновление 2018-12-17
Дата публикации 2018-12-17
Рейтинг 4.04/5 Всего 214 оценок
Разработчик xjpablobrx
Тип оплаты free
Официальный сайт расширения https://github.com/jpablobr/simple-auto-scroll
Поддерживаемые языки en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Auto Scroll",
    "version": "0.1.4",
    "description": "Simple speed-customizable auto scroll",
    "icons": {
        "48": "icons\/autoscroll.png",
        "128": "icons\/autoscroll.png"
    },
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_title": "",
        "default_icon": "icons\/autoscroll.png"
    },
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/simple_autoscroll.js"
            ],
            "run_at": "document_start"
        }
    ]
}