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 |
官方網址 | 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" } } |