FimFiction Story Downloader

Allows you to download your entire fimfiction.net library for backup or archive purposes.

ما هو FimFiction Story Downloader؟

FimFiction Story Downloader هو إضافة Chrome تم تطويرها بواسطة TwiPlusUltra، والميزة الرئيسية لها هي "Allows you to download your entire fimfiction.net library for backup or archive purposes.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة FimFiction Story Downloader

قم بتنزيل ملفات الامتداد FimFiction Story Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension allows users to bulk download stories from their story libraries on Fimfiction.net. The bulk download functionality presents a much easier alternative to downloading each story individually. Three file types are available, TXT, HTML, and EPUB. Simply navigate to your library, select the file type, and download.                    

معلومات أساسية عن التمديد

الاسم FimFiction Story Downloader FimFiction Story Downloader
ID mblegkamdlokioodlengilabmaficend
عنوان URL الرسمي https://chromewebstore.google.com/detail/fimfiction-story-download/mblegkamdlokioodlengilabmaficend
الوصف Allows you to download your entire fimfiction.net library for backup or archive purposes.
حجم الملف 191 KB
عدد التثبيتات 90
النسخة الحالية 1.1.0
آخر تحديث 2018-11-16
تاريخ النشر 2018-11-15
تقييم 4.00/5 مجموع تقييمات 3
المطور TwiPlusUltra
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/conorpark/FimFicBulkLibDownload
عنوان صفحة سياسة الخصوصية https://pastebin.com/8cy6nst5
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FimFiction Story Downloader",
    "version": "1.1.0",
    "description": "Allows you to download your entire fimfiction.net library for backup or archive purposes.",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_title": "Download Library Stories",
        "default_popup": "popup.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab",
        "tabs",
        "https:\/\/fimfiction.net\/*",
        "downloads",
        "contentSettings"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ]
}