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 } ] } |