AO3 tag downloader

Allows archiving the contents of a tag or search results from archiveofourown.org.

¿Qué es AO3 tag downloader?

AO3 tag downloader es una extensión de Chrome desarrollada por lastontheboat.hooray, y su función principal es "Allows archiving the contents of a tag or search results from archiveofourown.org.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión AO3 tag downloader

Descarga archivos de extensión AO3 tag downloader en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This extension automatically downloads every work included in a tag or search results in one of the supported AO3 download formats. It respects AO3's rate limits and when throttling occurs it will automatically resume once the throttling period is complete.                    

Información Básica de la Extensión

Nombre AO3 tag downloader AO3 tag downloader
ID icnoenhdioekejbbagnpamaafihdiaee
URL Oficial https://chromewebstore.google.com/detail/ao3-tag-downloader/icnoenhdioekejbbagnpamaafihdiaee
Descripción Allows archiving the contents of a tag or search results from archiveofourown.org.
Tamaño del Archivo 34.87 KB
Cantidad de Instalaciones 39
Versión Actual 1.1
Última Actualización 2023-01-09
Fecha de Publicación 2022-12-26
Desarrollador lastontheboat.hooray
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jdm/archiveofmyown/
URL de la Página de Ayuda https://github.com/jdm/archiveofmyown/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AO3 tag downloader",
    "version": "1.1",
    "description": "Allows archiving the contents of a tag or search results from archiveofourown.org.",
    "icons": {
        "48": "icon1.png"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "permissions": [
        "activeTab",
        "downloads",
        "storage",
        "alarms",
        "scripting"
    ],
    "firefox_background": {
        "scripts": [
            "background.js"
        ]
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "browser_style": true,
        "default_icon": {
            "19": "icon1.png",
            "38": "icon1.png"
        },
        "default_popup": "archive.html",
        "show_matches": [
            "https:\/\/archiveofourown.org\/tags\/*",
            "https:\/\/archiveofourown.org\/works*"
        ]
    }
}