Progress Bookmark
save progress of articles that has not been read completely
Progress Bookmark là gì?
Progress Bookmark là một tiện ích mở rộng Chrome được phát triển bởi hanjiang387, và tính năng chính của nó là "save progress of articles that has not been read completely".
Ả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 Progress Bookmark
Tải xuống các tệp mở rộng Progress Bookmark 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
Introduction: 1. Save progress of articles that has not been read completely. 2. When open the articles that has been saved progress, pages will scroll to the position recorded last time. 3. Progress Records can be added, updated or removed; 4. Progrees data will be automatically auto synced among different chromes on the same account.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ediaiaoabgoimfjpmegbhlhmpajmegoj |
URL Chính Thức | https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj |
Mô tả | save progress of articles that has not been read completely |
Kích Thước Tệp | 56.29 KB |
Số Lần Cài Đặt | 126 |
Phiên Bản Hiện Tại | 1.1.5 |
Cập Nhật Lần Cuối | 2016-03-26 |
Ngày Phát Hành | 2016-03-26 |
Đánh Giá | 4.67/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | hanjiang387 |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/coolriver/smartBookmark |
URL Trang Trợ Giúp | https://github.com/coolriver/smartBookmark |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Progress Bookmark", "description": "save progress of articles that has not been read completely", "version": "1.1.5", "browser_action": { "default_icon": "icon48.png", "default_popup": "popup.html", "default_title": "Progress Bookmark", "default_badgetext": "test" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.2.0.min.js", "content_script.js" ], "css": [ "mystyle.css" ] } ], "permissions": [ "contextMenus", "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |