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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้าช่วยเหลือ | 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:\/\/*\/*" ] } |