Unpaginate
Infinite scroll your favorite sites
Unpaginate란 무엇입니까?
Unpaginate은(는) Esquire Marketing에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Infinite scroll your favorite sites"입니다.
확장 프로그램 스크린샷
Unpaginate 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tired of always clicking through tons of pages on Google, Amazon, YouTube & Bing? Unpaginate allows you to infinitely scroll to the next page without having to click the next page and wait for it to load. Save hundreds of hours a year with Unpaginate!
확장 프로그램 기본 정보
이름 | Unpaginate |
ID | oamcmjemlelkciemicfpmojnnblgniab |
공식 URL | https://chromewebstore.google.com/detail/unpaginate/oamcmjemlelkciemicfpmojnnblgniab |
설명 | Infinite scroll your favorite sites |
파일 크기 | 271 KB |
설치 횟수 | 20 |
현재 버전 | 3.0 |
최근 업데이트 | 2019-01-02 |
출시 날짜 | 2019-01-01 |
개발자 | Esquire Marketing |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://sendia.co/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Unpaginate", "description": "Infinite scroll your favorite sites", "version": "3.0", "manifest_version": 2, "permissions": [ "storage" ], "icons": { "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "16": "icons\/icon_48.png", "32": "icons\/icon_128.png" }, "default_title": "Unpaginate" }, "content_scripts": [ { "js": [ "inject\/inject.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "options_ui": { "page": "options\/options.html", "open_in_tab": true, "chrome_style": true } } |