Ao3 Series Downloader

Easily download a series from Ao3!

What is Ao3 Series Downloader?

Ao3 Series Downloader is a Chrome extension developed by Sean Z Writes, and its main feature is "Easily download a series from Ao3!".

Extension Screenshots

screenshot

Download Ao3 Series Downloader Extension CRX File

Download Ao3 Series Downloader extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Ao3 Series Downloader Ao3 Series Downloader
ID lhdccommkdbadfgjhlccfmcpdhmepjik
Official URL https://chromewebstore.google.com/detail/ao3-series-downloader/lhdccommkdbadfgjhlccfmcpdhmepjik
Description Easily download a series from Ao3!
File Size 26.91 KB
Installation Count 1,345
Current Version 1.0
Last Updated 2021-09-16
Publish Date 2021-09-16
Rating 4.83/5 Total 6 Ratings
Developer Sean Z Writes
Email [email protected]
Payment Type free
Extension Website https://github.com/SeanZWrites/Ao3SeriesDownloader
Help Page URL https://github.com/SeanZWrites/Ao3SeriesDownloader
Supported Languages 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"
    }
}