AO3 tag downloader
Allows archiving the contents of a tag or search results from archiveofourown.org.
Что такое AO3 tag downloader?
AO3 tag downloader - это расширение Chrome, разработанное lastontheboat.hooray, и его основная функция - "Allows archiving the contents of a tag or search results from archiveofourown.org.".
Снимки экрана расширения
Скачать файл CRX расширения AO3 tag downloader
Скачайте файлы расширений AO3 tag downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | AO3 tag downloader |
ID | icnoenhdioekejbbagnpamaafihdiaee |
Официальный URL | https://chromewebstore.google.com/detail/ao3-tag-downloader/icnoenhdioekejbbagnpamaafihdiaee |
Описание | Allows archiving the contents of a tag or search results from archiveofourown.org. |
Размер файла | 34.87 KB |
Количество установок | 39 |
Текущая Версия | 1.1 |
Последнее Обновление | 2023-01-09 |
Дата публикации | 2022-12-26 |
Разработчик | lastontheboat.hooray |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/jdm/archiveofmyown/ |
URL страницы помощи | https://github.com/jdm/archiveofmyown/issues |
Поддерживаемые языки | 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*" ] } } |