forked from zaidka/cliget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (69 loc) · 1.99 KB
/
package.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "cliget",
"fullName": "cliget",
"description": "Download protected files using curl or wget",
"author": "Zaid Abdulla (http://zaidabdulla.com)",
"homepage": "https://github.com/zaidka/cliget",
"license": "MPL 2.0",
"version": "1.2.0",
"id": "cliget@zaidabdulla.com",
"icon": "data/icon.png",
"icon64": "data/icon64.png",
"permissions": {"private-browsing": true},
"preferences" : [{
"name": "use_double_quotes",
"title": "Double quotation marks",
"description": "Use double quotation marks (\") for command-line arguments. Enable this if you plan to *execute* the commands on a Windows machine.",
"type": "bool",
"value": false
},
{
"name": "remove_accept_encoding",
"title": "Remove Accept-Encoding header",
"description": "Remove Accept-Encoding header from request headers to avoid compressed response from server.",
"type": "bool",
"value": true
},
{
"name": "curl",
"title": "cURL",
"description": "Generate cURL commands.",
"type": "bool",
"value": true
},
{
"name": "curl.options",
"title": "Extra cURL options",
"description": "Add extra command-line arguments to be appended to the cURL command.",
"type": "string",
"value": "-L"
},
{
"name": "wget",
"title": "Wget",
"description": "Generate Wget commands.",
"type": "bool",
"value": false
},
{
"name": "wget.options",
"title": "Extra Wget options",
"description": "Add extra command-line arguments to be appended to the Wget command.",
"type": "string",
"value": "-c"
},
{
"name": "aria2",
"title": "aria2",
"description": "Generate aria2 commands.",
"type": "bool",
"value": false
},
{
"name": "aria2.options",
"title": "Extra aria2 options",
"description": "Add extra command-line arguments to be appended to the aria2c command.",
"type": "string",
"value": "--async-dns=false --continue=true --file-allocation=none --max-connection-per-server=8"
}]
}