LazyLoader
LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!
Qu'est-ce que LazyLoader ?
LazyLoader est une extension Chrome développée par Wrybread, et sa fonction principale est "LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension LazyLoader
Téléchargez les fichiers d'extension LazyLoader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | LazyLoader |
ID | nddlclelhkdcpggignhoejfonogmpemn |
URL Officiel | https://chromewebstore.google.com/detail/lazyloader/nddlclelhkdcpggignhoejfonogmpemn |
Description | LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat! |
Taille du Fichier | 55.11 KB |
Nombre d'Installations | 490 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2019-01-28 |
Date de Publication | 2019-01-22 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Wrybread |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://gizmoware.net/privacy |
Langues Prises en Charge | 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" } ] } |