Scroll Memory
Remembers the sroll position of the page, great for reading really long pages.
Scroll Memory란 무엇입니까?
Scroll Memory은(는) David Gilbertson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remembers the sroll position of the page, great for reading really long pages."입니다.
확장 프로그램 스크린샷
Scroll Memory 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Imagine you're reading a very long article. You don't have time to finish it now, but if you leave the page and come back later you'll lose the position you're up to. That's where this spectacularly useful extension comes to your rescue. Just click the icon and BAM, your position on the page will be remembered (on any computer you have Chrome syncing).
확장 프로그램 기본 정보
이름 | Scroll Memory |
ID | iidnpfiaeiohlkmaehhjoiffcmjclpap |
공식 URL | https://chromewebstore.google.com/detail/scroll-memory/iidnpfiaeiohlkmaehhjoiffcmjclpap |
설명 | Remembers the sroll position of the page, great for reading really long pages. |
파일 크기 | 13.69 KB |
설치 횟수 | 1,025 |
현재 버전 | 0.1.6 |
최근 업데이트 | 2014-05-20 |
출시 날짜 | 2014-05-20 |
평점 | 4.09/5 총 23 개의 평점 |
개발자 | David Gilbertson |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Scroll Memory", "version": "0.1.6", "manifest_version": 2, "description": "Remembers the sroll position of the page, great for reading really long pages.", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "permissions": [ "storage" ], "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/icon-19-off.png", "38": "images\/icon-38-off.png" }, "default_title": "scroll memory" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |