Progress Bookmark
save progress of articles that has not been read completely
Vad är Progress Bookmark?
Progress Bookmark är en Chrome-tillägg utvecklad av hanjiang387, och dess huvudfunktion är "save progress of articles that has not been read completely".
Tilläggsskärmbilder
Ladda ner Progress Bookmark-förlängningens CRX-fil
Ladda ner Progress Bookmark-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | ediaiaoabgoimfjpmegbhlhmpajmegoj |
Officiell webbadress | https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj |
Beskrivning | save progress of articles that has not been read completely |
Filstorlek | 56.29 KB |
Antal Installationer | 126 |
Aktuell Version | 1.1.5 |
Senast Uppdaterad | 2016-03-26 |
Publiceringsdatum | 2016-03-26 |
Betyg | 4.67/5 Totalt 9 Betyg |
Utvecklare | hanjiang387 |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/coolriver/smartBookmark |
Hjälpsida URL | https://github.com/coolriver/smartBookmark |
Stödda Språk | 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:\/\/*\/*" ] } |