Ao3 Series Downloader
Easily download a series from Ao3!
Wat is Ao3 Series Downloader?
Ao3 Series Downloader is een Chrome-extensie ontwikkeld door Sean Z Writes, en de belangrijkste functie is "Easily download a series from Ao3!".
Extensie Screenshots
Download het CRX-bestand van de extensie Ao3 Series Downloader
Download Ao3 Series Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Ao3 Series Downloader |
ID | lhdccommkdbadfgjhlccfmcpdhmepjik |
Officiële URL | https://chromewebstore.google.com/detail/ao3-series-downloader/lhdccommkdbadfgjhlccfmcpdhmepjik |
Beschrijving | Easily download a series from Ao3! |
Bestandsgrootte | 26.91 KB |
Aantal Installaties | 1,345 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2021-09-16 |
Publicatiedatum | 2021-09-16 |
Beoordeling | 4.83/5 Totaal 6 Beoordelingen |
Ontwikkelaar | Sean Z Writes |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/SeanZWrites/Ao3SeriesDownloader |
Help Pagina-URL | https://github.com/SeanZWrites/Ao3SeriesDownloader |
Ondersteunde Talen | 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" } } |