FimFiction Story Downloader

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

Co to jest FimFiction Story Downloader?

FimFiction Story Downloader to rozszerzenie Chrome opracowane przez TwiPlusUltra, a jego główną funkcją jest „Allows you to download your entire fimfiction.net library for backup or archive purposes.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia FimFiction Story Downloader

Pobierz pliki rozszerzeń FimFiction Story Downloader w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa FimFiction Story Downloader FimFiction Story Downloader
ID mblegkamdlokioodlengilabmaficend
Oficjalny URL https://chromewebstore.google.com/detail/fimfiction-story-download/mblegkamdlokioodlengilabmaficend
Opis Allows you to download your entire fimfiction.net library for backup or archive purposes.
Rozmiar pliku 191 KB
Liczba instalacji 90
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2018-11-16
Data Publikacji 2018-11-15
Ocena 4.00/5 Łącznie 3 Oceny
Deweloper TwiPlusUltra
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/conorpark/FimFicBulkLibDownload
Adres URL Strony Polityki Prywatności https://pastebin.com/8cy6nst5
Obsługiwane Języki 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"
            ]
        }
    ]
}