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 je Endless Page Scroller?

Endless Page Scroller je rozšíření Chrome vyvinuté https://namata.ru, a jeho hlavní funkcí je „This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Endless Page Scroller

Stáhněte si soubory rozšíření Endless Page Scroller ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Endless Page Scroller Endless Page Scroller
ID elejfbgccaknplepagepnbpflnoomioj
Oficiální URL https://chromewebstore.google.com/detail/endless-page-scroller/elejfbgccaknplepagepnbpflnoomioj
Popis This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.
Velikost souboru 252 KB
Počet instalací 9,000
Aktuální Verze 1.1
Poslední Aktualizace 2020-03-19
Datum Vydání 2020-03-19
Hodnocení 2.50/5 Celkem 8 Hodnocení
Vývojář https://namata.ru
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://namata.ru/extensions/endlesspagescroller
URL Stránky Nápovědy http://namata.ru/support/thanksforinstall
Podporované Jazyky 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": [
        ""
    ]
}