Ao3 Series Downloader
Easily download a series from Ao3!
Ao3 Series Downloader là gì?
Ao3 Series Downloader là một tiện ích mở rộng Chrome được phát triển bởi Sean Z Writes, và tính năng chính của nó là "Easily download a series from Ao3!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Ao3 Series Downloader
Tải xuống các tệp mở rộng Ao3 Series Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Ao3 Series Downloader |
ID | lhdccommkdbadfgjhlccfmcpdhmepjik |
URL Chính Thức | https://chromewebstore.google.com/detail/ao3-series-downloader/lhdccommkdbadfgjhlccfmcpdhmepjik |
Mô tả | Easily download a series from Ao3! |
Kích Thước Tệp | 26.91 KB |
Số Lần Cài Đặt | 1,345 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2021-09-16 |
Ngày Phát Hành | 2021-09-16 |
Đánh Giá | 4.83/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Sean Z Writes |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/SeanZWrites/Ao3SeriesDownloader |
URL Trang Trợ Giúp | https://github.com/SeanZWrites/Ao3SeriesDownloader |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |