Progress Bookmark
save progress of articles that has not been read completely
什么是Progress Bookmark?
Progress Bookmark是由hanjiang387开发的Chrome扩展程序,该扩展的主要功能是“save progress of articles that has not been read completely”。
扩展截图
下载Progress Bookmark扩展crx文件
下载Progress Bookmark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | ediaiaoabgoimfjpmegbhlhmpajmegoj |
官方URL | https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj |
简介 | save progress of articles that has not been read completely |
文件大小 | 56.29 KB |
安装次数 | 126 |
当前版本 | 1.1.5 |
更新时间 | 2016-03-26 |
上架时间 | 2016-03-26 |
评分 | 4.67/5 共9次评分 |
开发者 | hanjiang387 |
付费类型 | free |
扩展官网 | https://github.com/coolriver/smartBookmark |
帮助页面URL | https://github.com/coolriver/smartBookmark |
支持的语言 | 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:\/\/*\/*" ] } |