-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
79 lines (79 loc) · 1.96 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
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
{
"id": "convert-tools",
"name": "Convert Tools",
"version": "0.0.2",
"description": "Collection of tools for encoding, decoding, and data format conversions",
"author": {
"name": "Caido Labs Inc.",
"email": "[email protected]",
"url": "https://caido.io"
},
"plugins": [
{
"kind": "workflow",
"id": "base64-decode",
"name": "Base64 Decode",
"definition": "base64-decode/definition.json"
},
{
"kind": "workflow",
"id": "base64-encode",
"name": "Base64 Encode",
"definition": "base64-encode/definition.json"
},
{
"kind": "workflow",
"id": "form-data-to-json",
"name": "Form Data to JSON",
"definition": "form-data-to-json/definition.json"
},
{
"kind": "workflow",
"id": "html-decode-everything",
"name": "HTML Decode Everything",
"definition": "html-decode-everything/definition.json"
},
{
"kind": "workflow",
"id": "html-encode-everything",
"name": "HTML Encode Everything",
"definition": "html-encode-everything/definition.json"
},
{
"kind": "workflow",
"id": "json-escape",
"name": "JSON Escape",
"definition": "json-escape/definition.json"
},
{
"kind": "workflow",
"id": "json-to-form-data",
"name": "JSON to Form Data",
"definition": "json-to-form-data/definition.json"
},
{
"kind": "workflow",
"id": "json-to-xml",
"name": "JSON to XML",
"definition": "json-to-xml/definition.json"
},
{
"kind": "workflow",
"id": "json-unescape",
"name": "JSON Unescape",
"definition": "json-unescape/definition.json"
},
{
"kind": "workflow",
"id": "url-decode",
"name": "URL Decode",
"definition": "url-decode/definition.json"
},
{
"kind": "workflow",
"id": "url-encode",
"name": "URL Encode",
"definition": "url-encode/definition.json"
}
]
}