forked from zaidka/cliget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (109 loc) · 3.05 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
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
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "cliget",
"title": "cliget",
"description": "Download protected files using curl, wget, aria2, or saldl",
"author": "Zaid Abdulla (http://zaidabdulla.com)",
"homepage": "https://github.com/zaidka/cliget",
"license": "MPL 2.0",
"version": "1.3.0-dev",
"id": "[email protected]",
"icon": "data/icon.png",
"icon64": "data/icon64.png",
"main": "lib/main.js",
"engines": {
"firefox": ">=38.0a1",
"{8de7fcbb-c55c-4fbe-bfc5-fc555c87dbc4}": ">=27.1.0b1"
},
"permissions": {"private-browsing": true},
"preferences" : [{
"name": "use_double_quotes",
"title": "Escape with double-quotes",
"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"
},
{
"name": "saldl",
"title": "saldl",
"description": "Generate saldl commands.",
"type": "bool",
"value": false
},
{
"name": "saldl.options",
"title": "Extra saldl options",
"description": "Add extra command-line arguments to be appended to the saldl command.",
"type": "string",
"value": "-r"
},
{
"name": "youtube-dl",
"title": "youtube-dl",
"description": "Generate youtube-dl commands.",
"type": "bool",
"value": false
},
{
"name": "youtube-dl.options",
"title": "Extra youtube-dl options",
"description": "Add extra command-line arguments to be appended to the youtube-dl command.",
"type": "string",
"value": ""
},
{
"name": "request_header_cache_size",
"title": "Request header cache size",
"description": "The number of requests headers that will be cached in e10s mode",
"type": "integer",
"value": 100
}]
}