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文件
下载Scroll Memory扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 } ] } |