AO3 tag downloader
Allows archiving the contents of a tag or search results from archiveofourown.org.
Qu'est-ce que AO3 tag downloader ?
AO3 tag downloader est une extension Chrome développée par lastontheboat.hooray, et sa fonction principale est "Allows archiving the contents of a tag or search results from archiveofourown.org.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension AO3 tag downloader
Téléchargez les fichiers d'extension AO3 tag 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
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.
Informations de Base sur l'Extension
Nom | AO3 tag downloader |
ID | icnoenhdioekejbbagnpamaafihdiaee |
URL Officiel | https://chromewebstore.google.com/detail/ao3-tag-downloader/icnoenhdioekejbbagnpamaafihdiaee |
Description | Allows archiving the contents of a tag or search results from archiveofourown.org. |
Taille du Fichier | 34.87 KB |
Nombre d'Installations | 39 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2023-01-09 |
Date de Publication | 2022-12-26 |
Développeur | lastontheboat.hooray |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jdm/archiveofmyown/ |
URL de la Page d'Aide | https://github.com/jdm/archiveofmyown/issues |
Langues Prises en Charge | 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*" ] } } |