fantia-dl-tool
A tool to batch DL all media for Fantia posts.
什么是fantia-dl-tool?
fantia-dl-tool是由mnao305开发的Chrome扩展程序,该扩展的主要功能是“A tool to batch DL all media for Fantia posts.”。
扩展截图
下载fantia-dl-tool扩展crx文件
下载fantia-dl-tool扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Fantiaの投稿の画像を一括DLできるツールです。
画像を一枚ずつDLする面倒が無くなります。
以下のような階層構造のフォルダにダウンロードされます
デフォルトダウンロードフォルダ/
├ クリエイター名/
│ └ 記事タイトル/
│ └ コンテンツタイトル/
│ └ 各画像
└ ...
このツールは、株式会社虎の穴、Fantiaとは一切関係の無い非公式なものです。
このツールを利用して発生したいかなる損害も開発者は一切の責任を負いかねます。
不具合報告・機能要望などはGitHubのIssueにお願いします。
GitHub: https://github.com/mnao305/fantia-dl-tool 扩展基本信息
| 名称 | |
| ID | poaolllddjlbbomnohpahbpdlcklkffi |
| 官方URL | https://chromewebstore.google.com/detail/fantia-dl-tool/poaolllddjlbbomnohpahbpdlcklkffi |
| 简介 | A tool to batch DL all media for Fantia posts. |
| 文件大小 | 29.81 KB |
| 安装次数 | 13,981 |
| 当前版本 | 3.8.1 |
| 更新时间 | 2024-01-20 |
| 上架时间 | 2021-04-13 |
| 评分 | 3.29/5 共34次评分 |
| 开发者 | mnao305 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/mnao305/fantia-img-dl-tool |
| 帮助页面URL | https://github.com/mnao305/fantia-img-dl-tool/issues |
| 支持的语言 | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "fantia-dl-tool",
"description": "__MSG_description__",
"version": "3.8.1",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/fantia.jp\/posts\/*",
"https:\/\/fantia.jp\/fanclubs\/*\/backnumbers*"
],
"js": [
"content\/index.js"
]
}
],
"background": {
"scripts": [
"background\/index.js"
],
"persistent": false
},
"options_ui": {
"page": "options\/index.html",
"chrome_style": true,
"browser_style": true
},
"permissions": [
"downloads",
"contextMenus",
"storage"
]
} | |