Scroller

Scrolls to the bottom of web pages that load their content dynamically with AJAX.

Что такое Scroller?

Scroller - это расширение Chrome, разработанное http://www.nirodhasoftware.com, и его основная функция - "Scrolls to the bottom of web pages that load their content dynamically with AJAX.".

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

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

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

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

                        Scroller can be helpful when interacting with websites that load content as the user scrolls down the page. One problem with dynamic content loading is that you cannot search the entire page content without manually scrolling to the bottom of the page. Click on the Scroller button will perform the scrolling automatically for you. Free. No ads.                    

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

Название Scroller Scroller
ID ipldphdlpbbjchabnlmgljicgakpmnha
Официальный URL https://chrome.google.com/webstore/detail/scroller/ipldphdlpbbjchabnlmgljicgakpmnha
Описание Scrolls to the bottom of web pages that load their content dynamically with AJAX.
Размер файла 8.09 KB
Количество установок 133
Текущая Версия 0.3
Последнее Обновление 2014-02-13
Дата публикации 2014-02-13
Рейтинг 3.00/5 Всего 1 оценок
Разработчик http://www.nirodhasoftware.com
Тип оплаты free
Официальный сайт расширения http://www.nirodhasoftware.com/scroller
URL страницы помощи http://www.nirodhasoftware.com/scroller
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroller",
    "short_name": "Scroller",
    "version": "0.3",
    "author": "Nirodha Software",
    "homepage_url": "http:\/\/www.nirodhasoftware.com\/scroller",
    "description": "Scrolls to the bottom of web pages that load their content dynamically with AJAX.",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Scroller",
        "default_icon": "arrow.png"
    },
    "permissions": [
        "background",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}