Progress Bookmark
save progress of articles that has not been read completely
Hvad er Progress Bookmark?
Progress Bookmark er en Chrome-udvidelse udviklet af hanjiang387, og dens hovedfunktion er "save progress of articles that has not been read completely".
Udvidelsesskærmbilleder
Download Progress Bookmark-udvidelses-CRX-fil
Download Progress Bookmark-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | |
ID | ediaiaoabgoimfjpmegbhlhmpajmegoj |
Officiel URL | https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj |
Beskrivelse | save progress of articles that has not been read completely |
Filstørrelse | 56.29 KB |
Antal Installationer | 126 |
Nuværende Version | 1.1.5 |
Senest Opdateret | 2016-03-26 |
Udgivelsesdato | 2016-03-26 |
Bedømmelse | 4.67/5 Samlet 9 Bedømmelser |
Udvikler | hanjiang387 |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/coolriver/smartBookmark |
Hjælpeside-URL | https://github.com/coolriver/smartBookmark |
Understøttede Sprog | 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:\/\/*\/*" ] } |