-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
51 lines (51 loc) · 1.4 KB
/
manifest.json
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
{
"main": "main.py",
"name": "Example",
"homepage": "https://github.com/nzbgetcom/Extension-Example",
"kind": "POST-PROCESSING",
"displayName": "Example",
"version": "1.0",
"author": "phnzb",
"license": "GNU",
"about": "Example NZBGet extension",
"queueEvents": "",
"requirements": [
"This script requires Python 3.8+ to be installed on your system."
],
"description": ["Simple NZBGet Python extension"],
"options": [
{
"name": "OptionSelect",
"displayName": "OptionSelect",
"value": "One",
"description": ["Option with select values"],
"select": ["One", "Two"]
},
{
"name": "OptionString",
"displayName": "OptionString",
"value": "String value",
"description": ["Option with string value"],
"select": []
},
{
"name": "OptionNumber",
"displayName": "OptionNumber",
"value": 0,
"description": [
"Option with number value",
"(range 0 .. 1000)"
],
"select": [0, 1000]
}
],
"commands": [
{
"name": "Test",
"action": "Test command",
"displayName": "Test",
"description": ["Command to test extension"]
}
],
"taskTime": ""
}