Scroll Memory
Remembers the sroll position of the page, great for reading really long pages.
Scroll Memory là gì?
Scroll Memory là một tiện ích mở rộng Chrome được phát triển bởi David Gilbertson, và tính năng chính của nó là "Remembers the sroll position of the page, great for reading really long pages.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Scroll Memory
Tải xuống các tệp mở rộng Scroll Memory dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Scroll Memory |
ID | iidnpfiaeiohlkmaehhjoiffcmjclpap |
URL Chính Thức | https://chromewebstore.google.com/detail/scroll-memory/iidnpfiaeiohlkmaehhjoiffcmjclpap |
Mô tả | Remembers the sroll position of the page, great for reading really long pages. |
Kích Thước Tệp | 13.69 KB |
Số Lần Cài Đặt | 1,025 |
Phiên Bản Hiện Tại | 0.1.6 |
Cập Nhật Lần Cuối | 2014-05-20 |
Ngày Phát Hành | 2014-05-20 |
Đánh Giá | 4.09/5 Tổng số 23 Đánh Giá |
Nhà Phát Triển | David Gilbertson |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |