FimFiction Story Downloader

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

Cos'è FimFiction Story Downloader?

FimFiction Story Downloader è un'estensione di Chrome sviluppata da TwiPlusUltra, e la sua funzione principale è "Allows you to download your entire fimfiction.net library for backup or archive purposes.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione FimFiction Story Downloader

Scarica i file di estensione FimFiction Story Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome FimFiction Story Downloader FimFiction Story Downloader
ID mblegkamdlokioodlengilabmaficend
URL Ufficiale https://chromewebstore.google.com/detail/fimfiction-story-download/mblegkamdlokioodlengilabmaficend
Descrizione Allows you to download your entire fimfiction.net library for backup or archive purposes.
Dimensione del File 191 KB
Conteggio Installazioni 90
Versione Corrente 1.1.0
Ultimo Aggiornamento 2018-11-16
Data di Pubblicazione 2018-11-15
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore TwiPlusUltra
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/conorpark/FimFicBulkLibDownload
URL della Pagina della Politica sulla Privacy https://pastebin.com/8cy6nst5
Lingue Supportate 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"
            ]
        }
    ]
}