fimfic2epub
Improved EPUB exporter for Fimfiction
什么是fimfic2epub?
fimfic2epub是由djazz开发的Chrome扩展程序,该扩展的主要功能是“Improved EPUB exporter for Fimfiction”。
扩展截图
下载fimfic2epub扩展crx文件
下载fimfic2epub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a Chrome extension to generate improved EPUB ebooks from Fimfiction stories. It replaces the default EPUB download option.
扩展基本信息
名称 | fimfic2epub |
ID | fiijkoniocipeemlflajmmaecfhfcand |
官方URL | https://chromewebstore.google.com/detail/fimfic2epub/fiijkoniocipeemlflajmmaecfhfcand |
简介 | Improved EPUB exporter for Fimfiction |
文件大小 | 1.33 MB |
安装次数 | 227 |
当前版本 | 1.7.57 |
更新时间 | 2024-03-02 |
上架时间 | 2020-03-15 |
评分 | 5.00/5 共9次评分 |
开发者 | djazz |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/daniel-j/fimfic2epub |
帮助页面URL | https://github.com/daniel-j/fimfic2epub/issues |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "fimfic2epub", "short_name": "fimfic2epub", "description": "Improved EPUB exporter for Fimfiction", "version": "1.7.57", "icons": { "128": "icon-128.png" }, "background": { "scripts": [ "build\/eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.fimfiction.net\/*", "https:\/\/fimfiction.net\/*" ], "js": [ "build\/fimfic2epub.js" ], "css": [ "inject.css" ] } ], "page_action": { "default_icon": "fimfic2epub-logo.png" }, "web_accessible_resources": [ "fimfic2epub-logo.png" ], "permissions": [ "https:\/\/fimfiction.net\/*", "https:\/\/*.fimfiction.net\/*", "https:\/\/www.googleapis.com\/*", "https:\/\/i.ytimg.com\/*", "https:\/\/twemoji.maxcdn.com\/*", "https:\/\/cdn.jsdelivr.net\/gh\/twitter\/*", "storage" ], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |