Ao3 Series Downloader

Easily download a series from Ao3!

Qu'est-ce que Ao3 Series Downloader ?

Ao3 Series Downloader est une extension Chrome développée par Sean Z Writes, et sa fonction principale est "Easily download a series from Ao3!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Ao3 Series Downloader

Téléchargez les fichiers d'extension Ao3 Series Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Ao3 Series Downloader Ao3 Series Downloader
ID lhdccommkdbadfgjhlccfmcpdhmepjik
URL Officiel https://chromewebstore.google.com/detail/ao3-series-downloader/lhdccommkdbadfgjhlccfmcpdhmepjik
Description Easily download a series from Ao3!
Taille du Fichier 26.91 KB
Nombre d'Installations 1,345
Version Actuelle 1.0
Dernière Mise à Jour 2021-09-16
Date de Publication 2021-09-16
Évaluation 4.83/5 Total 6 Évaluations
Développeur Sean Z Writes
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/SeanZWrites/Ao3SeriesDownloader
URL de la Page d'Aide https://github.com/SeanZWrites/Ao3SeriesDownloader
Langues Prises en Charge 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"
    }
}