-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 975 Bytes
/
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
{
"required_api_version": "^2.0.0",
"name": "Decimal Converter",
"description": "Convert numbers into binary/decimal/octal/hexadecimal",
"developer_name": "Teven Feng",
"icon": "images/icon.png",
"options": {
"query_debounce": 0.05
},
"preferences": [
{
"id": "binary_kw",
"type": "keyword",
"name": "Decimal Converter(binary)",
"default_value": "bin"
},
{
"id": "octal_kw",
"type": "keyword",
"name": "Decimal Converter(octal)",
"default_value": "oct"
},
{
"id": "decimal_kw",
"type": "keyword",
"name": "Decimal Converter(decimal)",
"default_value": "dc"
},
{
"id": "hexadecimal_kw",
"type": "keyword",
"name": "Decimal Converter(hexadecimal)",
"default_value": "hex"
}
]
}