Auto Scroll

Automatically scroll down on your current web page

Что такое Auto Scroll?

Auto Scroll - это расширение Chrome, разработанное PracticalApplications, и его основная функция - "Automatically scroll down on your current web page".

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

screenshot
screenshot

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

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

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

                        This chrome extension allows you to automatically scroll down the page with a click of a button.

This chrome extension is perfect for reading any web page of your choice.                    

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

Название Auto Scroll Auto Scroll
ID pnmppanpmcimcfnkhkcpnmomiiomchpd
Официальный URL https://chrome.google.com/webstore/detail/auto-scroll/pnmppanpmcimcfnkhkcpnmomiiomchpd
Описание Automatically scroll down on your current web page
Размер файла 44.83 KB
Количество установок 460
Текущая Версия 1.0
Последнее Обновление 2018-02-20
Дата публикации 2018-02-20
Рейтинг 3.75/5 Всего 4 оценок
Разработчик PracticalApplications
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Scroll",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Automatically scroll down on your current web page",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "editor.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "editor.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}