LazyLoader
LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!
Cos'è LazyLoader?
LazyLoader è un'estensione di Chrome sviluppata da Wrybread, e la sua funzione principale è "LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione LazyLoader
Scarica i file di estensione LazyLoader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | LazyLoader |
ID | nddlclelhkdcpggignhoejfonogmpemn |
URL Ufficiale | https://chromewebstore.google.com/detail/lazyloader/nddlclelhkdcpggignhoejfonogmpemn |
Descrizione | LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat! |
Dimensione del File | 55.11 KB |
Conteggio Installazioni | 490 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2019-01-28 |
Data di Pubblicazione | 2019-01-22 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Wrybread |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://gizmoware.net/privacy |
Lingue Supportate | 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" } ] } |