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 |
官方網址 | 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:\/\/*\/*" ] } |