Endless Page Scroller

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

O que é Endless Page Scroller?

Endless Page Scroller é uma extensão do Chrome desenvolvida por https://namata.ru, e sua principal característica é "This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Endless Page Scroller

Baixe arquivos de extensão Endless Page Scroller no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Endless Page Scroller Endless Page Scroller
ID elejfbgccaknplepagepnbpflnoomioj
URL Oficial https://chromewebstore.google.com/detail/endless-page-scroller/elejfbgccaknplepagepnbpflnoomioj
Descrição This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.
Tamanho do Arquivo 252 KB
Contagem de Instalações 9,000
Versão Atual 1.1
Última Atualização 2020-03-19
Data de Publicação 2020-03-19
Classificação 2.50/5 Total de 8 Avaliações
Desenvolvedor https://namata.ru
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://namata.ru/extensions/endlesspagescroller
URL da Página de Ajuda http://namata.ru/support/thanksforinstall
Idiomas Suportados 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": [
        ""
    ]
}