fantia-dl-tool
A tool to batch DL all media for Fantia posts.
Was ist fantia-dl-tool?
fantia-dl-tool ist eine Chrome-Erweiterung, die von mnao305 entwickelt wurde, und ihr Hauptmerkmal ist "A tool to batch DL all media for Fantia posts.".
Erweiterungsscreenshots
fantia-dl-tool-Erweiterungs-CRX-Datei herunterladen
Laden Sie fantia-dl-tool-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
Fantiaの投稿の画像を一括DLできるツールです。
画像を一枚ずつDLする面倒が無くなります。
以下のような階層構造のフォルダにダウンロードされます
デフォルトダウンロードフォルダ/
├ クリエイター名/
│ └ 記事タイトル/
│ └ コンテンツタイトル/
│ └ 各画像
└ ...
このツールは、株式会社虎の穴、Fantiaとは一切関係の無い非公式なものです。
このツールを利用して発生したいかなる損害も開発者は一切の責任を負いかねます。
不具合報告・機能要望などはGitHubのIssueにお願いします。
GitHub: https://github.com/mnao305/fantia-dl-tool Grundlegende Informationen zur Erweiterung
| Name | |
| ID | poaolllddjlbbomnohpahbpdlcklkffi |
| Offizielle URL | https://chromewebstore.google.com/detail/fantia-dl-tool/poaolllddjlbbomnohpahbpdlcklkffi |
| Beschreibung | A tool to batch DL all media for Fantia posts. |
| Dateigröße | 29.81 KB |
| Installationsanzahl | 13,981 |
| Aktuelle Version | 3.8.1 |
| Letztes Update | 2024-01-20 |
| Veröffentlichungsdatum | 2021-04-13 |
| Bewertung | 3.29/5 Insgesamt 34 Bewertungen |
| Entwickler | mnao305 |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/mnao305/fantia-img-dl-tool |
| Hilfeseite URL | https://github.com/mnao305/fantia-img-dl-tool/issues |
| Unterstützte Sprachen | 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"
]
} | |