Ao3 Series Downloader
Easily download a series from Ao3!
Ao3 Series Downloader क्या है?
Ao3 Series Downloader Sean Z Writes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily download a series from Ao3!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Ao3 Series Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Archive of our Own is an amazing fanfiction website, and they make it easy for users to download stories so they can read offline. However, their website doesn't offer an easy way to download an entire series. This add-on adds a single button "Download Series" to any Ao3 series webpage, that automates the process of downloading each of the fanfics included in the series.
एक्सटेंशन की मूल जानकारी
नाम | Ao3 Series Downloader |
ID | lhdccommkdbadfgjhlccfmcpdhmepjik |
आधिकारिक URL | https://chromewebstore.google.com/detail/ao3-series-downloader/lhdccommkdbadfgjhlccfmcpdhmepjik |
विवरण | Easily download a series from Ao3! |
फ़ाइल का आकार | 26.91 KB |
स्थापना संख्या | 1,345 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2021-09-16 |
प्रकाशन तिथि | 2021-09-16 |
रेटिंग | 4.83/5 कुल 6 रेटिंग्स |
डेवलपर | Sean Z Writes |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/SeanZWrites/Ao3SeriesDownloader |
सहायता पृष्ठ URL | https://github.com/SeanZWrites/Ao3SeriesDownloader |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ao3 Series Downloader", "description": "Easily download a series from Ao3!", "homepage_url": "https:\/\/github.com\/SeanZWrites\/Ao3SeriesDownloader", "version": "1.0", "manifest_version": 2, "permissions": [ "downloads" ], "content_scripts": [ { "matches": [ "https:\/\/archiveofourown.org\/series\/*" ], "js": [ "ao3SeriesDownloader.js" ] } ], "background": { "scripts": [ "backgroundDownloader.js" ], "persistent": false }, "icons": { "16": "icons\/Icon16px.png", "48": "icons\/Icon48px.png", "128": "icons\/Icon128px.png" } } |