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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}