LazyLoader

LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!

O que é LazyLoader?

LazyLoader é uma extensão do Chrome desenvolvida por Wrybread, e sua principal característica é "LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão LazyLoader

Baixe arquivos de extensão LazyLoader 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

                        Some web pages, like Instagram, load as you scroll down the page. Sometimes you just want to load the whole page though, hence LazyLoader. 

By default you click the icon and it loads the current page 20 times, but you can set it to load a specific page however many times you want in the settings.

Because friends don't let friends scroll down on the same page 100 times a day.                    

Informações Básicas da Extensão

Nome LazyLoader LazyLoader
ID nddlclelhkdcpggignhoejfonogmpemn
URL Oficial https://chromewebstore.google.com/detail/lazyloader/nddlclelhkdcpggignhoejfonogmpemn
Descrição LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!
Tamanho do Arquivo 55.11 KB
Contagem de Instalações 490
Versão Atual 1.0.2
Última Atualização 2019-01-28
Data de Publicação 2019-01-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Wrybread
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://gizmoware.net/privacy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LazyLoader",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "LazyLoader, an extension to scroll down on pages with delayed load aka \"lazy load\". Powered by Shrimp Boat!",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/background\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png",
            "38": "icons\/icon38.png"
        }
    },
    "options_page": "src\/options\/index.html",
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/inject\/helpers.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}