Progress Bookmark
save progress of articles that has not been read completely
What is Progress Bookmark?
Progress Bookmark is a Chrome extension developed by hanjiang387, and its main feature is "save progress of articles that has not been read completely".
Extension Screenshots
Download Progress Bookmark Extension CRX File
Download Progress Bookmark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | ediaiaoabgoimfjpmegbhlhmpajmegoj |
Official URL | https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj |
Description | save progress of articles that has not been read completely |
File Size | 56.29 KB |
Installation Count | 126 |
Current Version | 1.1.5 |
Last Updated | 2016-03-26 |
Publish Date | 2016-03-26 |
Rating | 4.67/5 Total 9 Ratings |
Developer | hanjiang387 |
Payment Type | free |
Extension Website | https://github.com/coolriver/smartBookmark |
Help Page URL | https://github.com/coolriver/smartBookmark |
Supported Languages | 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:\/\/*\/*" ] } |