Scroll Memory
Remembers the sroll position of the page, great for reading really long pages.
Was ist Scroll Memory?
Scroll Memory ist eine Chrome-Erweiterung, die von David Gilbertson entwickelt wurde, und ihr Hauptmerkmal ist "Remembers the sroll position of the page, great for reading really long pages.".
Erweiterungsscreenshots
Scroll Memory-Erweiterungs-CRX-Datei herunterladen
Laden Sie Scroll Memory-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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).
Grundlegende Informationen zur Erweiterung
Name | Scroll Memory |
ID | iidnpfiaeiohlkmaehhjoiffcmjclpap |
Offizielle URL | https://chromewebstore.google.com/detail/scroll-memory/iidnpfiaeiohlkmaehhjoiffcmjclpap |
Beschreibung | Remembers the sroll position of the page, great for reading really long pages. |
Dateigröße | 13.69 KB |
Installationsanzahl | 1,025 |
Aktuelle Version | 0.1.6 |
Letztes Update | 2014-05-20 |
Veröffentlichungsdatum | 2014-05-20 |
Bewertung | 4.09/5 Insgesamt 23 Bewertungen |
Entwickler | David Gilbertson |
Zahlungsart | free |
Unterstützte Sprachen | 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 } ] } |