Progress Bookmark
save progress of articles that has not been read completely
Apa itu Progress Bookmark?
Progress Bookmark adalah ekstensi Chrome yang dikembangkan oleh hanjiang387, dan fitur utamanya adalah "save progress of articles that has not been read completely".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Progress Bookmark
Unduh file ekstensi Progress Bookmark dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | ediaiaoabgoimfjpmegbhlhmpajmegoj |
URL Resmi | https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj |
Deskripsi | save progress of articles that has not been read completely |
Ukuran File | 56.29 KB |
Jumlah Instalasi | 126 |
Versi Saat Ini | 1.1.5 |
Terakhir Diperbarui | 2016-03-26 |
Tanggal Publikasi | 2016-03-26 |
Penilaian | 4.67/5 Total 9 Penilaian |
Pengembang | hanjiang387 |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/coolriver/smartBookmark |
URL Halaman Bantuan | https://github.com/coolriver/smartBookmark |
Bahasa yang Didukung | 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:\/\/*\/*" ] } |