AO3 tag downloader
Allows archiving the contents of a tag or search results from archiveofourown.org.
Cos'è AO3 tag downloader?
AO3 tag downloader è un'estensione di Chrome sviluppata da lastontheboat.hooray, e la sua funzione principale è "Allows archiving the contents of a tag or search results from archiveofourown.org.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AO3 tag downloader
Scarica i file di estensione AO3 tag 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
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.
Informazioni di Base sull'Estensione
Nome | AO3 tag downloader |
ID | icnoenhdioekejbbagnpamaafihdiaee |
URL Ufficiale | https://chromewebstore.google.com/detail/ao3-tag-downloader/icnoenhdioekejbbagnpamaafihdiaee |
Descrizione | Allows archiving the contents of a tag or search results from archiveofourown.org. |
Dimensione del File | 34.87 KB |
Conteggio Installazioni | 39 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2023-01-09 |
Data di Pubblicazione | 2022-12-26 |
Sviluppatore | lastontheboat.hooray |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jdm/archiveofmyown/ |
URL della Pagina di Aiuto | https://github.com/jdm/archiveofmyown/issues |
Lingue Supportate | 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*" ] } } |