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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

fantia-dl-tool 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Fantiaの投稿の画像を一括DLできるツールです。

画像を一枚ずつDLする面倒が無くなります。

以下のような階層構造のフォルダにダウンロードされます

デフォルトダウンロードフォルダ/
 ├ クリエイター名/
 │  └ 記事タイトル/
 │    └ コンテンツタイトル/
 │      └ 各画像
 └ ...


このツールは、株式会社虎の穴、Fantiaとは一切関係の無い非公式なものです。
このツールを利用して発生したいかなる損害も開発者は一切の責任を負いかねます。

不具合報告・機能要望などはGitHubのIssueにお願いします。
GitHub: https://github.com/mnao305/fantia-dl-tool                    

확장 프로그램 기본 정보

이름 fantia-dl-tool 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"
    ]
}