Patreon Downloader
Download media and attachments from Patreon pages.
Patreon Downloader là gì?
Patreon Downloader là một tiện ích mở rộng Chrome được phát triển bởi blairm, và tính năng chính của nó là "Download media and attachments from Patreon pages.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Patreon Downloader
Tải xuống các tệp mở rộng Patreon Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Patreon Downloader |
ID | mnfjhjpninhcccbahcdbcphpifofoajc |
URL Chính Thức | https://chromewebstore.google.com/detail/patreon-downloader/mnfjhjpninhcccbahcdbcphpifofoajc |
Mô tả | Download media and attachments from Patreon pages. |
Kích Thước Tệp | 348 KB |
Số Lần Cài Đặt | 20,000 |
Phiên Bản Hiện Tại | 1.1.3 |
Cập Nhật Lần Cuối | 2023-10-06 |
Ngày Phát Hành | 2021-04-18 |
Đánh Giá | 2.78/5 Tổng số 72 Đánh Giá |
Nhà Phát Triển | blairm |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sneat/patreon-downloader |
URL Trang Trợ Giúp | https://github.com/sneat/patreon-downloader/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |