LazyLoader
LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!
Was ist LazyLoader?
LazyLoader ist eine Chrome-Erweiterung, die von Wrybread entwickelt wurde, und ihr Hauptmerkmal ist "LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!".
Erweiterungsscreenshots
LazyLoader-Erweiterungs-CRX-Datei herunterladen
Laden Sie LazyLoader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | LazyLoader |
ID | nddlclelhkdcpggignhoejfonogmpemn |
Offizielle URL | https://chromewebstore.google.com/detail/lazyloader/nddlclelhkdcpggignhoejfonogmpemn |
Beschreibung | LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat! |
Dateigröße | 55.11 KB |
Installationsanzahl | 490 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2019-01-28 |
Veröffentlichungsdatum | 2019-01-22 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Wrybread |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://gizmoware.net/privacy |
Unterstützte Sprachen | 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" } ] } |