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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    }
}