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 |
| Eメール | [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"
]
} | |