Patreon Downloader

Download media and attachments from Patreon pages.

Patreon Downloader란 무엇입니까?

Patreon Downloader은(는) blairm에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download media and attachments from Patreon pages."입니다.

확장 프로그램 스크린샷

screenshot

Patreon Downloader 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        An extension to help you download all of those attachments quickly, to a folder of your choice.

When viewing a Patreon Post page, you can use the `Patreon Downloader` to quickly download all of the media and attachments from that post into your Downloads folder.

The zip filename will be pre-filled for you based on the Patreon creator's name and the title of the post.

For example, if you were downloading from creator `JohnSmith` and the title of the post was `These are some of my favourite things...` you would be given a filename of `johnsmith-these-are-some-of-my-favourite-things.zip`.

Patreon Downloader will download 3 files concurrently, to prevent the downloads timing out. The downloads will continue even if you close the Patreon Downloader window.                    

확장 프로그램 기본 정보

이름 Patreon Downloader Patreon Downloader
ID mnfjhjpninhcccbahcdbcphpifofoajc
공식 URL https://chromewebstore.google.com/detail/patreon-downloader/mnfjhjpninhcccbahcdbcphpifofoajc
설명 Download media and attachments from Patreon pages.
파일 크기 348 KB
설치 횟수 20,000
현재 버전 1.1.3
최근 업데이트 2023-10-06
출시 날짜 2021-04-18
평점 2.78/5 총 72 개의 평점
개발자 blairm
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sneat/patreon-downloader
도움말 페이지 URL https://github.com/sneat/patreon-downloader/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Patreon Downloader",
    "version": "1.1.3",
    "description": "Download media and attachments from Patreon pages.",
    "action": {
        "default_title": "Patreon Downloader",
        "default_popup": "src\/popup.html",
        "default_icon": {
            "16": "\/icons\/icon-16x16.png",
            "32": "\/icons\/icon-32x32.png",
            "48": "\/icons\/icon-48x48.png",
            "128": "\/icons\/icon-128x128.png"
        }
    },
    "icons": {
        "16": "\/icons\/icon-16x16.png",
        "32": "\/icons\/icon-32x32.png",
        "48": "\/icons\/icon-48x48.png",
        "128": "\/icons\/icon-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.patreon.com\/posts\/*",
                "https:\/\/patreon.com\/posts\/*"
            ],
            "js": [
                "src\/contentScript.js",
                "src\/js\/downloader.js",
                "src\/fflate\/fflate.js",
                "src\/js\/compressor.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/patreon-downloader.js"
            ],
            "matches": [
                "https:\/\/www.patreon.com\/*",
                "https:\/\/patreon.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "src\/background.js"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "unlimitedStorage"
    ]
}