FimFiction Story Downloader
Allows you to download your entire fimfiction.net library for backup or archive purposes.
什么是FimFiction Story Downloader?
FimFiction Story Downloader是由TwiPlusUltra开发的Chrome扩展程序,该扩展的主要功能是“Allows you to download your entire fimfiction.net library for backup or archive purposes.”。
扩展截图
下载FimFiction Story Downloader扩展crx文件
下载FimFiction Story Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | FimFiction Story Downloader |
ID | mblegkamdlokioodlengilabmaficend |
官方URL | https://chromewebstore.google.com/detail/fimfiction-story-download/mblegkamdlokioodlengilabmaficend |
简介 | Allows you to download your entire fimfiction.net library for backup or archive purposes. |
文件大小 | 191 KB |
安装次数 | 90 |
当前版本 | 1.1.0 |
更新时间 | 2018-11-16 |
上架时间 | 2018-11-15 |
评分 | 4.00/5 共3次评分 |
开发者 | TwiPlusUltra |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/conorpark/FimFicBulkLibDownload |
隐私政策页面URL | https://pastebin.com/8cy6nst5 |
支持的语言 | 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" ] } ] } |