Patreon Downloader
Download media and attachments from Patreon pages.
Patreon Downloader क्या है?
Patreon Downloader blairm द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download media and attachments from Patreon pages."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Patreon Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |