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 |
官方網址 | 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 } ] } |