Endless Page Scroller

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

Co to jest Endless Page Scroller?

Endless Page Scroller to rozszerzenie Chrome opracowane przez https://namata.ru, a jego główną funkcją jest „This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Endless Page Scroller

Pobierz pliki rozszerzeń Endless Page Scroller w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Endless Page Scroller Endless Page Scroller
ID elejfbgccaknplepagepnbpflnoomioj
Oficjalny URL https://chromewebstore.google.com/detail/endless-page-scroller/elejfbgccaknplepagepnbpflnoomioj
Opis This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.
Rozmiar pliku 252 KB
Liczba instalacji 9,000
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2020-03-19
Data Publikacji 2020-03-19
Ocena 2.50/5 Łącznie 8 Oceny
Deweloper https://namata.ru
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://namata.ru/extensions/endlesspagescroller
Adres URL Strony Pomocy http://namata.ru/support/thanksforinstall
Obsługiwane Języki 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": [
        ""
    ]
}