Patreon Downloader
Download media and attachments from Patreon pages.
什么是Patreon Downloader?
Patreon Downloader是由blairm开发的Chrome扩展程序,该扩展的主要功能是“Download media and attachments from Patreon pages.”。
扩展截图
下载Patreon Downloader扩展crx文件
下载Patreon Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
]
} | |