Ao3 Series Downloader
Easily download a series from Ao3!
什么是Ao3 Series Downloader?
Ao3 Series Downloader是由Sean Z Writes开发的Chrome扩展程序,该扩展的主要功能是“Easily download a series from Ao3!”。
扩展截图
下载Ao3 Series Downloader扩展crx文件
下载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" } } |