Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Youtube Music | 3,144 | 15 hours ago | 259 | mit | JavaScript | |||||
YouTube Music Desktop App bundled with custom plugins (and built-in ad blocker / downloader) | ||||||||||
Flutter_downloader | 814 | 22 | 1 | 19 days ago | 53 | May 26, 2022 | 280 | bsd-3-clause | Kotlin | |
Flutter Downloader - A plugin for creating and managing download tasks. Maintainer: @bartekpacia | ||||||||||
Happypandax | 743 | 3 days ago | 85 | lgpl-3.0 | JavaScript | |||||
A cross-platform server and client application for managing and reading manga and doujinshi | ||||||||||
Gradle Download Task | 602 | 64 | 11 | 3 days ago | 34 | May 04, 2022 | 4 | apache-2.0 | Java | |
📥 Adds a download task to Gradle that displays progress information | ||||||||||
Fanficfare | 587 | a day ago | 107 | June 01, 2022 | 27 | other | Python | |||
FanFicFare is a tool for making eBooks from stories on fanfiction and other web sites. | ||||||||||
Keepass Yet Another Favicon Downloader | 396 | a year ago | 9 | mit | C# | |||||
Yet Another Favicon Downloader for KeePass 2.x | ||||||||||
Mangaripper | 159 | 2 years ago | 21 | mit | C# | |||||
This software helps you download manga (Japanese Comic) from several websites for your offline viewing. | ||||||||||
Mymanga | 66 | 5 years ago | 12 | gpl-3.0 | C# | |||||
Manga downloader and reader for Windows 7/8.1/10. Written in C# with a clean and simple WPF interface. | ||||||||||
Cordova Plugin Apkupdater | 62 | 4 months ago | 24 | December 10, 2021 | mit | Java | ||||
This plugin allows your Android app to download and install compressed updates without the Google Play Store. | ||||||||||
Mindl | 44 | 6 years ago | 5 | December 21, 2016 | 11 | agpl-3.0 | Go | |||
A downloader for various sites and services. |
file download for capacitor
中文 | English
一个简单的ionic capacitor 文件下载 native 插件,支持android、ios
安装:
npm install capacitor-plugin-file-downloader
ionic capacitor sync
配置:
Android配置方法:
在根目录下找到 android 目录 ,依次找到 android/src/main/java/**** (嵌套包名文件夹)/activities/MainActivity.java,修改:
......
import com.veluxa.plugins.FileDownloader;
public class MainActivity extends BridgeActivity {
......
this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
......
add(FileDownloader.class);
}});
......
}
IOS配置方法: 无需配置
调用:
在需要使用到插件的文件,添加:
......
import 'capacitor-plugin-file-downloader';
import { Plugins } from '@capacitor/core';
const { FileDownloader } = Plugins
......
FileDownloader.download({
url: fileUrl, //下载地址
filename: filename //包含后缀的文件名
}).then(doc => {
//下载成功回调
console.log(doc.path);
}).catch(e => {
//下载失败回调
})
......
file download for capacitor
A simple ionic capacitor file download native plug-in, support android, ios
Install:
npm install capacitor-plugin-file-downloader
ionic capacitor sync
Configuration:
Android:
Find the android directory in the root directory, and then find android/src/main/java/**** (nested package name folder)/activities/MainActivity.java, Do the following changes:
......
import com.veluxa.plugins.FileDownloader;
public class MainActivity extends BridgeActivity {
......
this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
......
add(FileDownloader.class);
}});
......
}
IOS: Don't need to configure
Use:
In the files that need to use the plug-in:
......
import 'capacitor-plugin-file-downloader';
import { Plugins } from '@capacitor/core';
const { FileDownloader } = Plugins
......
FileDownloader.download({
url: fileUrl, //download link
filename: filename //The file name that contains the suffix
}).then(doc => {
//success
console.log(doc.path);
}).catch(e => {
//error
})
......