FimFiction Story Downloader

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

Vad är FimFiction Story Downloader?

FimFiction Story Downloader är en Chrome-tillägg utvecklad av TwiPlusUltra, och dess huvudfunktion är "Allows you to download your entire fimfiction.net library for backup or archive purposes.".

Tilläggsskärmbilder

screenshot

Ladda ner FimFiction Story Downloader-förlängningens CRX-fil

Ladda ner FimFiction Story Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn FimFiction Story Downloader FimFiction Story Downloader
ID mblegkamdlokioodlengilabmaficend
Officiell webbadress https://chromewebstore.google.com/detail/fimfiction-story-download/mblegkamdlokioodlengilabmaficend
Beskrivning Allows you to download your entire fimfiction.net library for backup or archive purposes.
Filstorlek 191 KB
Antal Installationer 90
Aktuell Version 1.1.0
Senast Uppdaterad 2018-11-16
Publiceringsdatum 2018-11-15
Betyg 4.00/5 Totalt 3 Betyg
Utvecklare TwiPlusUltra
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/conorpark/FimFicBulkLibDownload
URL till Sekretesspolicy Sidan https://pastebin.com/8cy6nst5
Stödda Språk 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"
            ]
        }
    ]
}