FimFiction Story Downloader

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

Hvad er FimFiction Story Downloader?

FimFiction Story Downloader er en Chrome-udvidelse udviklet af TwiPlusUltra, og dens hovedfunktion er "Allows you to download your entire fimfiction.net library for backup or archive purposes.".

Udvidelsesskærmbilleder

screenshot

Download FimFiction Story Downloader-udvidelses-CRX-fil

Download FimFiction Story Downloader-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn FimFiction Story Downloader FimFiction Story Downloader
ID mblegkamdlokioodlengilabmaficend
Officiel URL https://chromewebstore.google.com/detail/fimfiction-story-download/mblegkamdlokioodlengilabmaficend
Beskrivelse Allows you to download your entire fimfiction.net library for backup or archive purposes.
Filstørrelse 191 KB
Antal Installationer 90
Nuværende Version 1.1.0
Senest Opdateret 2018-11-16
Udgivelsesdato 2018-11-15
Bedømmelse 4.00/5 Samlet 3 Bedømmelser
Udvikler TwiPlusUltra
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/conorpark/FimFicBulkLibDownload
URL til Fortrolighedspolitik Side https://pastebin.com/8cy6nst5
Understøttede Sprog 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"
            ]
        }
    ]
}