Progress Bookmark
save progress of articles that has not been read completely
ما هو Progress Bookmark؟
Progress Bookmark هو إضافة Chrome تم تطويرها بواسطة hanjiang387، والميزة الرئيسية لها هي "save progress of articles that has not been read completely".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Progress Bookmark
قم بتنزيل ملفات الامتداد Progress Bookmark بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان URL الرسمي | 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 |
عنوان صفحة المساعدة | 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:\/\/*\/*" ] } |