Ao3 Series Downloader
Easily download a series from Ao3!
Что такое Ao3 Series Downloader?
Ao3 Series Downloader - это расширение Chrome, разработанное Sean Z Writes, и его основная функция - "Easily download a series from Ao3!".
Снимки экрана расширения
Скачать файл CRX расширения Ao3 Series Downloader
Скачайте файлы расширений Ao3 Series Downloader в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Ao3 Series Downloader |
ID | lhdccommkdbadfgjhlccfmcpdhmepjik |
Официальный URL | https://chromewebstore.google.com/detail/ao3-series-downloader/lhdccommkdbadfgjhlccfmcpdhmepjik |
Описание | Easily download a series from Ao3! |
Размер файла | 26.91 KB |
Количество установок | 1,345 |
Текущая Версия | 1.0 |
Последнее Обновление | 2021-09-16 |
Дата публикации | 2021-09-16 |
Рейтинг | 4.83/5 Всего 6 оценок |
Разработчик | Sean Z Writes |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/SeanZWrites/Ao3SeriesDownloader |
URL страницы помощи | https://github.com/SeanZWrites/Ao3SeriesDownloader |
Поддерживаемые языки | 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" } } |