AO3 Progress Bookmark
Bookmarks Archive of Our Own (AO3)'s works precisely at the page scroll position.
AO3 Progress Bookmark क्या है?
AO3 Progress Bookmark cc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bookmarks Archive of Our Own (AO3)'s works precisely at the page scroll position."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में AO3 Progress Bookmark एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |