Endless Page Scroller

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

Vad är Endless Page Scroller?

Endless Page Scroller är en Chrome-tillägg utvecklad av https://namata.ru, och dess huvudfunktion är "This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.".

Tilläggsskärmbilder

screenshot

Ladda ner Endless Page Scroller-förlängningens CRX-fil

Ladda ner Endless Page Scroller-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Endless Page Scroller Endless Page Scroller
ID elejfbgccaknplepagepnbpflnoomioj
Officiell webbadress https://chromewebstore.google.com/detail/endless-page-scroller/elejfbgccaknplepagepnbpflnoomioj
Beskrivning This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.
Filstorlek 252 KB
Antal Installationer 9,000
Aktuell Version 1.1
Senast Uppdaterad 2020-03-19
Publiceringsdatum 2020-03-19
Betyg 2.50/5 Totalt 8 Betyg
Utvecklare https://namata.ru
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://namata.ru/extensions/endlesspagescroller
Hjälpsida URL http://namata.ru/support/thanksforinstall
Stödda Språk 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": [
        ""
    ]
}