Scroll Memory
Remembers the sroll position of the page, great for reading really long pages.
What is Scroll Memory?
Scroll Memory is a Chrome extension developed by David Gilbertson, and its main feature is "Remembers the sroll position of the page, great for reading really long pages.".
Extension Screenshots
Download Scroll Memory Extension CRX File
Download Scroll Memory extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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).
Extension Basic Information
Name | Scroll Memory |
ID | iidnpfiaeiohlkmaehhjoiffcmjclpap |
Official URL | https://chromewebstore.google.com/detail/scroll-memory/iidnpfiaeiohlkmaehhjoiffcmjclpap |
Description | Remembers the sroll position of the page, great for reading really long pages. |
File Size | 13.69 KB |
Installation Count | 1,025 |
Current Version | 0.1.6 |
Last Updated | 2014-05-20 |
Publish Date | 2014-05-20 |
Rating | 4.09/5 Total 23 Ratings |
Developer | David Gilbertson |
Payment Type | free |
Supported Languages | 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 } ] } |