Progress Bookmark
save progress of articles that has not been read completely
Co je Progress Bookmark?
Progress Bookmark je rozšíření Chrome vyvinuté hanjiang387, a jeho hlavní funkcí je „save progress of articles that has not been read completely“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Progress Bookmark
Stáhněte si soubory rozšíření Progress Bookmark ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | ediaiaoabgoimfjpmegbhlhmpajmegoj |
Oficiální URL | https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj |
Popis | save progress of articles that has not been read completely |
Velikost souboru | 56.29 KB |
Počet instalací | 126 |
Aktuální Verze | 1.1.5 |
Poslední Aktualizace | 2016-03-26 |
Datum Vydání | 2016-03-26 |
Hodnocení | 4.67/5 Celkem 9 Hodnocení |
Vývojář | hanjiang387 |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/coolriver/smartBookmark |
URL Stránky Nápovědy | https://github.com/coolriver/smartBookmark |
Podporované Jazyky | 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:\/\/*\/*" ] } |