LazyLoader
LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!
LazyLoader란 무엇입니까?
LazyLoader은(는) Wrybread에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat!"입니다.
확장 프로그램 스크린샷
LazyLoader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | LazyLoader |
ID | nddlclelhkdcpggignhoejfonogmpemn |
공식 URL | https://chromewebstore.google.com/detail/lazyloader/nddlclelhkdcpggignhoejfonogmpemn |
설명 | LazyLoader, an extension to scroll down on pages with delayed load aka "lazy load". Powered by Shrimp Boat! |
파일 크기 | 55.11 KB |
설치 횟수 | 490 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2019-01-28 |
출시 날짜 | 2019-01-22 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Wrybread |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://gizmoware.net/privacy |
지원되는 언어 | 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" } ] } |