Endless Page Scroller

This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.

Что такое Endless Page Scroller?

Endless Page Scroller - это расширение Chrome, разработанное https://namata.ru, и его основная функция - "This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.".

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

screenshot

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

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

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

                        This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible. Just click on the extension icon and the “Start” button to start scrolling and the “Stop” button to finish it.                    

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

Название Endless Page Scroller Endless Page Scroller
ID elejfbgccaknplepagepnbpflnoomioj
Официальный URL https://chromewebstore.google.com/detail/endless-page-scroller/elejfbgccaknplepagepnbpflnoomioj
Описание This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.
Размер файла 252 KB
Количество установок 9,000
Текущая Версия 1.1
Последнее Обновление 2020-03-19
Дата публикации 2020-03-19
Рейтинг 2.50/5 Всего 8 оценок
Разработчик https://namata.ru
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://namata.ru/extensions/endlesspagescroller
URL страницы помощи http://namata.ru/support/thanksforinstall
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Endless Page Scroller",
    "description": "This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.",
    "version": "1.1",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        ""
    ]
}