Endless Page Scroller

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

Hvad er Endless Page Scroller?

Endless Page Scroller er en Chrome-udvidelse udviklet af https://namata.ru, og dens hovedfunktion er "This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.".

Udvidelsesskærmbilleder

screenshot

Download Endless Page Scroller-udvidelses-CRX-fil

Download Endless Page Scroller-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Endless Page Scroller Endless Page Scroller
ID elejfbgccaknplepagepnbpflnoomioj
Officiel URL https://chromewebstore.google.com/detail/endless-page-scroller/elejfbgccaknplepagepnbpflnoomioj
Beskrivelse This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.
Filstørrelse 252 KB
Antal Installationer 9,000
Nuværende Version 1.1
Senest Opdateret 2020-03-19
Udgivelsesdato 2020-03-19
Bedømmelse 2.50/5 Samlet 8 Bedømmelser
Udvikler https://namata.ru
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://namata.ru/extensions/endlesspagescroller
Hjælpeside-URL http://namata.ru/support/thanksforinstall
Understøttede Sprog 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": [
        ""
    ]
}