Ao3 Series Downloader

Easily download a series from Ao3!

Ao3 Series Downloaderคืออะไร?

Ao3 Series Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sean Z Writes และคุณลักษณะหลักของมันคือ "Easily download a series from Ao3!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ao3 Series Downloader

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}