Ao3 Series Downloader

Easily download a series from Ao3!

Cos'è Ao3 Series Downloader?

Ao3 Series Downloader è un'estensione di Chrome sviluppata da Sean Z Writes, e la sua funzione principale è "Easily download a series from Ao3!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Ao3 Series Downloader

Scarica i file di estensione Ao3 Series Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Ao3 Series Downloader Ao3 Series Downloader
ID lhdccommkdbadfgjhlccfmcpdhmepjik
URL Ufficiale https://chromewebstore.google.com/detail/ao3-series-downloader/lhdccommkdbadfgjhlccfmcpdhmepjik
Descrizione Easily download a series from Ao3!
Dimensione del File 26.91 KB
Conteggio Installazioni 1,345
Versione Corrente 1.0
Ultimo Aggiornamento 2021-09-16
Data di Pubblicazione 2021-09-16
Valutazione 4.83/5 Totale 6 Valutazioni
Sviluppatore Sean Z Writes
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/SeanZWrites/Ao3SeriesDownloader
URL della Pagina di Aiuto https://github.com/SeanZWrites/Ao3SeriesDownloader
Lingue Supportate 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"
    }
}