LazyLoader
LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!
Co je LazyLoader?
LazyLoader je rozšíření Chrome vyvinuté Wrybread, a jeho hlavní funkcí je „LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření LazyLoader
Stáhněte si soubory rozšíření LazyLoader ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | LazyLoader |
ID | nddlclelhkdcpggignhoejfonogmpemn |
Oficiální URL | https://chromewebstore.google.com/detail/lazyloader/nddlclelhkdcpggignhoejfonogmpemn |
Popis | LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat! |
Velikost souboru | 55.11 KB |
Počet instalací | 490 |
Aktuální Verze | 1.0.2 |
Poslední Aktualizace | 2019-01-28 |
Datum Vydání | 2019-01-22 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Wrybread |
[email protected] | |
Typ Platby | free |
URL Stránky Zásad Ochrany Soukromí | https://gizmoware.net/privacy |
Podporované Jazyky | 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" } ] } |