Endless Page Scroller

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

Cos'è Endless Page Scroller?

Endless Page Scroller è un'estensione di Chrome sviluppata da https://namata.ru, e la sua funzione principale è "This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Endless Page Scroller

Scarica i file di estensione Endless Page Scroller in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Endless Page Scroller Endless Page Scroller
ID elejfbgccaknplepagepnbpflnoomioj
URL Ufficiale https://chromewebstore.google.com/detail/endless-page-scroller/elejfbgccaknplepagepnbpflnoomioj
Descrizione This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.
Dimensione del File 252 KB
Conteggio Installazioni 9,000
Versione Corrente 1.1
Ultimo Aggiornamento 2020-03-19
Data di Pubblicazione 2020-03-19
Valutazione 2.50/5 Totale 8 Valutazioni
Sviluppatore https://namata.ru
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://namata.ru/extensions/endlesspagescroller
URL della Pagina di Aiuto http://namata.ru/support/thanksforinstall
Lingue Supportate 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": [
        ""
    ]
}