AO3 Progress Bookmark
Bookmarks Archive of Our Own (AO3)'s works precisely at the page scroll position.
AO3 Progress Bookmarkคืออะไร?
AO3 Progress Bookmark เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cc และคุณลักษณะหลักของมันคือ "Bookmarks Archive of Our Own (AO3)'s works precisely at the page scroll position."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AO3 Progress Bookmark
ดาวน์โหลดไฟล์ส่วนขยาย AO3 Progress Bookmark ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Features: - bookmark at the page scroll position. (allowing users to bookmark up to 1000 AO3 works) - backup page content in case of AO3 service down - optional UI enhancements This extension is not meant to replace the AO3 bookmark feature. Instead, it serves as a temporary place for readers to keep track of their reading progress. (Think of it as a way to manage the numerous AO3 tabs you had opened, which you would want return to where you left off at a later time). For permanent saving of an AO3 work for future reference, I recommend using AO3's built-in bookmark feature.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | AO3 Progress Bookmark |
ID | bhoneiohifjbclebcmibnlgmdhdpahki |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ao3-progress-bookmark/bhoneiohifjbclebcmibnlgmdhdpahki |
คำอธิบาย | Bookmarks Archive of Our Own (AO3)'s works precisely at the page scroll position. |
ขนาดไฟล์ | 77.56 KB |
จำนวนการติดตั้ง | 72 |
เวอร์ชันปัจจุบัน | 0.1.1 |
อัปเดตครั้งล่าสุด | 2023-10-22 |
วันที่เผยแพร่ | 2023-08-03 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | cc |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/catcoder13/ao3-progress-bookmark |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AO3 Progress Bookmark", "version": "0.1.1", "description": "Bookmarks Archive of Our Own (AO3)'s works precisely at the page scroll position.", "icons": { "128": "imgs\/ao3pb.png" }, "permissions": [ "storage", "unlimitedStorage" ], "action": { "default_popup": "popup.html", "default_icon": { "128": "imgs\/ao3pb.png" } }, "content_scripts": [ { "matches": [ "https:\/\/archiveofourown.org\/works\/*", "https:\/\/archiveofourown.org\/chapters\/*" ], "exclude_matches": [ "https:\/\/archiveofourown.org\/works", "https:\/\/archiveofourown.org\/works\/new*", "https:\/\/archiveofourown.org\/works\/search*", "https:\/\/archiveofourown.org\/works\/*\/comments*", "https:\/\/archiveofourown.org\/works\/*\/edit*", "https:\/\/archiveofourown.org\/works\/*\/chapters\/new*", "https:\/\/archiveofourown.org\/works\/*\/chapters\/manage*" ], "css": [ "css\/content.css" ], "js": [ "js\/chunk-vendors.js", "js\/content.js" ] } ] } |