Autoscroll

Use Ctrl+Up/Down arrows to make pages scroll continously.

Что такое Autoscroll?

Autoscroll - это расширение Chrome, разработанное https://mrogalski.eu, и его основная функция - "Use Ctrl+Up/Down arrows to make pages scroll continously.".

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

screenshot

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

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

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

                        Scroller is an extension that automatically scrolls webpages. Use Ctrl + arrows to adjust scrolling speed or set default values using icon on the top bar.                    

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

Название Autoscroll Autoscroll
ID cokfegjeoaflhjkloplfpjgnmlhbfkhp
Официальный URL https://chromewebstore.google.com/detail/autoscroll/cokfegjeoaflhjkloplfpjgnmlhbfkhp
Описание Use Ctrl+Up/Down arrows to make pages scroll continously.
Размер файла 22.91 KB
Количество установок 2,108
Текущая Версия 1.2
Последнее Обновление 2013-04-27
Дата публикации 2013-04-27
Рейтинг 3.64/5 Всего 33 оценок
Разработчик https://mrogalski.eu
Тип оплаты free
Официальный сайт расширения http://mrogalski.eu/
Поддерживаемые языки en
manifest.json
{
    "browser_action": {
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        },
        "default_popup": "popup.html",
        "default_title": "Use Ctrl+Up\/Down arrows to make pages scroll continously."
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Use Ctrl+Up\/Down arrows to make pages scroll continously.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "name": "Autoscroll",
    "permissions": [
        "storage",
        "tabs"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scroller.js"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "1.2"
}