Ao3 Series Downloader
Easily download a series from Ao3!
Vad är Ao3 Series Downloader?
Ao3 Series Downloader är en Chrome-tillägg utvecklad av Sean Z Writes, och dess huvudfunktion är "Easily download a series from Ao3!".
Tilläggsskärmbilder
Ladda ner Ao3 Series Downloader-förlängningens CRX-fil
Ladda ner Ao3 Series Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Ao3 Series Downloader |
ID | lhdccommkdbadfgjhlccfmcpdhmepjik |
Officiell webbadress | https://chromewebstore.google.com/detail/ao3-series-downloader/lhdccommkdbadfgjhlccfmcpdhmepjik |
Beskrivning | Easily download a series from Ao3! |
Filstorlek | 26.91 KB |
Antal Installationer | 1,345 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2021-09-16 |
Publiceringsdatum | 2021-09-16 |
Betyg | 4.83/5 Totalt 6 Betyg |
Utvecklare | Sean Z Writes |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/SeanZWrites/Ao3SeriesDownloader |
Hjälpsida URL | https://github.com/SeanZWrites/Ao3SeriesDownloader |
Stödda Språk | 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" } } |