-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
33 lines (33 loc) · 951 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
{
"required_api_version": "^2.0.0",
"name": "Number Converter",
"description": "A number converter, supporting decimal, hexadecimal, and binary.",
"developer_name": "William Aaron Cheung, @Troublor",
"icon": "images/icon.png",
"options": {
"query_debounce": 0.1
},
"preferences": [
{
"id": "kw_hex",
"type": "keyword",
"name": "Convert Hexadecimal Number",
"description": "Input a hexadecimal number and convert to decimal or binary.",
"default_value": "hex"
},
{
"id": "kw_bin",
"type": "keyword",
"name": "Convert Binary Number",
"description": "Input a binary number and convert to decimal or hexadecimal.",
"default_value": "bin"
},
{
"id": "kw_dec",
"type": "keyword",
"name": "Convert Decimal Number",
"description": "Input a decimal number and convert to hexadecimal or binary.",
"default_value": "dec"
}
]
}