FimFiction Story Downloader
Allows you to download your entire fimfiction.net library for backup or archive purposes.
Was ist FimFiction Story Downloader?
FimFiction Story Downloader ist eine Chrome-Erweiterung, die von TwiPlusUltra entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to download your entire fimfiction.net library for backup or archive purposes.".
Erweiterungsscreenshots
FimFiction Story Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie FimFiction Story Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | FimFiction Story Downloader |
ID | mblegkamdlokioodlengilabmaficend |
Offizielle URL | https://chromewebstore.google.com/detail/fimfiction-story-download/mblegkamdlokioodlengilabmaficend |
Beschreibung | Allows you to download your entire fimfiction.net library for backup or archive purposes. |
Dateigröße | 191 KB |
Installationsanzahl | 90 |
Aktuelle Version | 1.1.0 |
Letztes Update | 2018-11-16 |
Veröffentlichungsdatum | 2018-11-15 |
Bewertung | 4.00/5 Insgesamt 3 Bewertungen |
Entwickler | TwiPlusUltra |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/conorpark/FimFicBulkLibDownload |
URL der Datenschutzrichtlinien-Seite | https://pastebin.com/8cy6nst5 |
Unterstützte Sprachen | 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" ] } ] } |