Ao3 Series Downloader
Easily download a series from Ao3!
Co to jest Ao3 Series Downloader?
Ao3 Series Downloader to rozszerzenie Chrome opracowane przez Sean Z Writes, a jego główną funkcją jest „Easily download a series from Ao3!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Ao3 Series Downloader
Pobierz pliki rozszerzeń Ao3 Series Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Ao3 Series Downloader |
ID | lhdccommkdbadfgjhlccfmcpdhmepjik |
Oficjalny URL | https://chromewebstore.google.com/detail/ao3-series-downloader/lhdccommkdbadfgjhlccfmcpdhmepjik |
Opis | Easily download a series from Ao3! |
Rozmiar pliku | 26.91 KB |
Liczba instalacji | 1,345 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2021-09-16 |
Data Publikacji | 2021-09-16 |
Ocena | 4.83/5 Łącznie 6 Oceny |
Deweloper | Sean Z Writes |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/SeanZWrites/Ao3SeriesDownloader |
Adres URL Strony Pomocy | https://github.com/SeanZWrites/Ao3SeriesDownloader |
Obsługiwane Języki | 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" } } |