Reading Progress Tracker
Convenietly Save Your Web Articles' Reading Progress Across Devices
Reading Progress Trackerคืออะไร?
Reading Progress Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Convenietly Save Your Web Articles' Reading Progress Across Devices"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reading Progress Tracker
ดาวน์โหลดไฟล์ส่วนขยาย Reading Progress Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Tired of losing your web articles' reading progress? I was and it's very frustrating! With 'Reading Progress Tracker' losing progress is no longer an issue. You can save your progress in one click on any page, and access it later from any device with the chrome web browser. It's simple, it's straightforward and it's opensource! Any feedback and/or contribution will be very much appreciated :) Repo: https://github.com/hhsn88/chrome/tree/master/prog-tracker * A complementary mobile app is also planned for cross platform support.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Reading Progress Tracker |
ID | egmoopojemfgacjnjfdpjfijanhlcpop |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/reading-progress-tracker/egmoopojemfgacjnjfdpjfijanhlcpop |
คำอธิบาย | Convenietly Save Your Web Articles' Reading Progress Across Devices |
ขนาดไฟล์ | 19.27 KB |
จำนวนการติดตั้ง | 19 |
เวอร์ชันปัจจุบัน | 1.02 |
อัปเดตครั้งล่าสุด | 2019-09-04 |
วันที่เผยแพร่ | 2019-09-03 |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reading Progress Tracker", "version": "1.02", "description": "Convenietly Save Your Web Articles' Reading Progress Across Devices", "permissions": [ "tabs", "activeTab", "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/prog_trkr16.png", "32": "images\/prog_trkr32.png", "48": "images\/prog_trkr48.png", "128": "images\/prog_trkr128.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "images\/prog_trkr16.png", "32": "images\/prog_trkr32.png", "48": "images\/prog_trkr48.png", "128": "images\/prog_trkr128.png" }, "options_page": "options.html", "manifest_version": 2 } |