-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplatforms.json
More file actions
94 lines (92 loc) · 2.19 KB
/
Copy pathplatforms.json
File metadata and controls
94 lines (92 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"version": "2.0.0",
"description": "平台下载配置",
"platforms": {
"mega": {
"name": "Mega",
"domains": ["mega.nz", "mega.co.nz"],
"tool": "gallery-dl",
"requiresAuth": false
},
"baidu": {
"name": "百度网盘",
"domains": ["pan.baidu.com"],
"tool": "manual",
"requiresAuth": true
},
"gdrive": {
"name": "Google Drive",
"domains": ["drive.google.com"],
"tool": "gdown",
"requiresAuth": false
},
"mediafire": {
"name": "MediaFire",
"domains": ["mediafire.com"],
"tool": "gallery-dl",
"requiresAuth": false
},
"dropbox": {
"name": "Dropbox",
"domains": ["dropbox.com"],
"tool": "gallery-dl",
"requiresAuth": false
},
"megaup": {
"name": "MegaUp",
"domains": ["megaup.net"],
"tool": "gallery-dl",
"requiresAuth": false
},
"rapidgator": {
"name": "RapidGator",
"domains": ["rapidgator.net"],
"tool": "manual",
"requiresAuth": false
},
"nitroflare": {
"name": "Nitroflare",
"domains": ["nitroflare.com"],
"tool": "manual",
"requiresAuth": false
},
"uploadgig": {
"name": "UploadGig",
"domains": ["uploadgig.com"],
"tool": "manual",
"requiresAuth": false
},
"1fichier": {
"name": "1fichier",
"domains": ["1fichier.com"],
"tool": "manual",
"requiresAuth": false
},
"zippyshare": {
"name": "ZippyShare",
"domains": ["zippyshare.com"],
"tool": "manual",
"requiresAuth": false
},
"turbobit": {
"name": "TurboBit",
"domains": ["turb.to", "turbobit.net"],
"tool": "manual",
"requiresAuth": false
}
},
"tools": {
"gallery-dl": {
"command": "gallery-dl",
"args": ["--download-directory", "{output_dir}", "{url}"]
},
"yt-dlp": {
"command": "yt-dlp",
"args": ["-o", "{output_dir}/%(title)s.%(ext)s", "{url}"]
},
"gdown": {
"command": "gdown",
"args": ["-O", "{output_dir}/{filename}", "{url}"]
}
}
}