forked from piejanssens/Extension-ExtendedUnpacker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
100 lines (100 loc) · 2.81 KB
/
manifest.json
File metadata and controls
100 lines (100 loc) · 2.81 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
95
96
97
98
99
100
{
"main": "main.py",
"name": "ExtendedUnpacker",
"homepage": "https://github.com/nzbgetcom/Extension-ExtendedUnpacker",
"kind": "POST-PROCESSING",
"displayName": "Extended Unpacker",
"version": "1.0",
"author": "piejanssens,thorli",
"license": "GNU",
"about": "Unpacks nested zip and rar archives.",
"queueEvents": "",
"requirements": [
"This script requires Python 3.8.0+ to be installed on your system."
],
"description": [
"This script extracts nested zip and rar archives from downloaded files."
],
"options": [
{
"name": "UnrarCmd",
"displayName": "UnrarCmd",
"value": "",
"description": [
"The command name or full path to the unrar executable.",
"If blank, NZBGet \"UnrarCmd\" setting is used.",
"1. If unrar is in your system's PATH, just use its name (e.g., 'unrar' or 'unrar.exe').",
"2. Otherwise, provide the full, absolute path.",
"Examples:",
" - Windows: C:\\Program Files\\NZBGet\\unrar.exe",
" - Linux: /usr/bin/unrar",
"If blank, NZBGet \"UnrarCmd\" setting is used.",
"",
"Default: blank"
],
"select": []
},
{
"name": "UnrarArgs",
"displayName": "UnrarArgs",
"value": "e -idp -ai -o-",
"description": [
"The static command-line arguments to pass to unrar.",
"",
"Default: e -idp -ai -o-"
],
"select": []
},
{
"name": "SevenZipCmd",
"displayName": "SevenZipCmd",
"value": "",
"description": [
"The command name or full path to the 7-Zip executable.",
"1. If 7-Zip is in your system's PATH, use its name (e.g., '7z' or '7z.exe').",
"2. Otherwise, provide the full, absolute path.",
"Examples:",
" - Windows: C:\\Program Files\\NZBGet\\7z.exe",
" - Linux: /usr/bin/7z",
"If blank, NZBGet \"SevenZipCmd\" setting is used.",
"",
"Default: blank"
],
"select": []
},
{
"name": "SevenZipArgs",
"displayName": "SevenZipArgs",
"value": "e -aos",
"description": [
"The static command-line arguments to pass to 7-Zip.",
"",
"Default: e -aos"
],
"select": []
},
{
"name": "WaitTime",
"displayName": "WaitTime",
"value": 0,
"description": [
"Time (in seconds) to pause start of script.",
"(Gives NZBGet time to perform \"UnpackCleanupDisk\" action on slow systems).",
"",
"Default: 0"
],
"select": []
},
{
"name": "DeleteLeftover",
"displayName": "DeleteLeftover",
"value": "yes",
"description": [
"Delete leftover archive files after successful extract."
],
"select": ["yes", "no"]
}
],
"commands": [],
"taskTime": ""
}