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!」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
    }
}