-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
68 lines (68 loc) · 2.03 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
{
"required_api_version": "^2.0.0",
"name": "Encoder",
"description": "Encode/Decode a string into multiple formats",
"developer_name": "Bruno Paz",
"icon": "images/icon.png",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "encoder_kw",
"type": "keyword",
"name": "Encoder",
"description": "Encodes a string into multiple formats",
"default_value": "encode"
},
{
"id": "decoder_kw",
"type": "keyword",
"name": "Decoder",
"description": "Decodes a string into multiple formats",
"default_value": "decode"
},
{
"id": "kw_encode_base64",
"type": "keyword",
"name": "Base64 Encoder",
"description": "Encodes a string in base64 format",
"default_value": "b64:encode"
},
{
"id": "kw_decode_base64",
"type": "keyword",
"name": "Base64 Decoder",
"description": "Decodes a string in base64 format",
"default_value": "b64:decode"
},
{
"id": "kw_encode_url",
"type": "keyword",
"name": "URL Encoder",
"description": "Encodes a string in url format",
"default_value": "url:encode"
},
{
"id": "kw_decode_url",
"type": "keyword",
"name": "URL Decoder",
"description": "Decodes a string in base64 format",
"default_value": "url:decode"
},
{
"id": "kw_encode_html",
"type": "keyword",
"name": "HTML Encoder",
"description": "Encodes an HTML string",
"default_value": "html:encode"
},
{
"id": "kw_decode_html",
"type": "keyword",
"name": "HTML Decoder",
"description": "Decodes an HTML string",
"default_value": "html:decode"
}
]
}