Ao3 Series Downloader
Easily download a series from Ao3!
Apa itu Ao3 Series Downloader?
Ao3 Series Downloader adalah ekstensi Chrome yang dikembangkan oleh Sean Z Writes, dan fitur utamanya adalah "Easily download a series from Ao3!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Ao3 Series Downloader
Unduh file ekstensi Ao3 Series Downloader dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Ao3 Series Downloader |
ID | lhdccommkdbadfgjhlccfmcpdhmepjik |
URL Resmi | https://chromewebstore.google.com/detail/ao3-series-downloader/lhdccommkdbadfgjhlccfmcpdhmepjik |
Deskripsi | Easily download a series from Ao3! |
Ukuran File | 26.91 KB |
Jumlah Instalasi | 1,345 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2021-09-16 |
Tanggal Publikasi | 2021-09-16 |
Penilaian | 4.83/5 Total 6 Penilaian |
Pengembang | Sean Z Writes |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/SeanZWrites/Ao3SeriesDownloader |
URL Halaman Bantuan | https://github.com/SeanZWrites/Ao3SeriesDownloader |
Bahasa yang Didukung | 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" } } |