forked from tchar/ulauncher-albert-calculate-anything
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
122 lines (122 loc) · 3.53 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
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
113
114
115
116
117
118
119
120
121
122
{
"required_api_version": "^2.0.0",
"name": "Calculate Anything",
"description": "An extension to calculate anything, from currency and unit conversion to percentage, time and complex calculations",
"developer_name": "Tilemachos Charalampous",
"icon": "calculate_anything/images/icon.svg",
"options": {
"query_debounce": 0.05
},
"preferences": [
{
"id": "calc_kw",
"type": "keyword",
"name": "Calculate Anything",
"description": "Calculate expressions, percentages",
"default_value": "="
},
{
"id": "time_kw",
"type": "keyword",
"name": "Calculate Anything: Time",
"description": "Convert time to other timezones",
"default_value": "time"
},
{
"id": "dec_kw",
"type": "keyword",
"name": "Calculate Anything: Dec",
"description": "Calculate and convert dec",
"default_value": "dec"
},
{
"id": "hex_kw",
"type": "keyword",
"name": "Calculate Anything: Hex",
"description": "Calculate and convert hex",
"default_value": "hex"
},
{
"id": "oct_kw",
"type": "keyword",
"name": "Calculate Anything: Oct",
"description": "Calculate and convert oct",
"default_value": "oct"
},
{
"id": "bin_kw",
"type": "keyword",
"name": "Calculate Anything: Bin",
"description": "Calculate and convert bin",
"default_value": "bin"
},
{
"id": "currency_provider",
"type": "select",
"name": "Currency Provider",
"description": "Your currency provider that requires an API Key",
"default_value": "fixerio",
"options": [
{"value": "internal", "text": "Internal"},
{"value": "fixerio", "text": "fixer.io + Internal"}
]
},
{
"id": "api_key",
"type": "input",
"name": "Currency API Key",
"description": "Your fixer.io API key",
"default_value": ""
},
{
"id": "cache",
"type": "select",
"name": "Currency Cache",
"description": "Cache currency exchange rates for a specified duration",
"default_value": "86400",
"options": [
{"value": "0", "text": "None"},
{"value": "86400", "text": "1 day"},
{"value": "604800", "text": "1 Week"},
{"value": "1209600", "text": "2 Weeks"},
{"value": "2629746", "text": "1 Month"},
{"value": "31556952", "text": "1 Year"}
]
},
{
"id": "default_currencies",
"type": "input",
"name": "Default Currencies",
"desciption": "A comma separated list of currencies to display if not target currency is specified (works only when cache enabled)",
"default_value": "USD,EUR,GBP,CAD"
},
{
"id": "default_cities",
"type": "input",
"name": "Default Cities",
"desciption": "A comma separated list of cities to display local time",
"default_value": "New York City US, London GB, Madrid ES, Vancouver CA, Athens GR"
},
{
"id": "units_conversion_mode",
"type": "select",
"name": "Units Conversion mode",
"default_value": "normal",
"options": [
{"value": "normal", "text": "Normal"},
{"value": "crazy", "text": "CRAZY!!!"}
]
},
{
"id": "show_empty_placeholder",
"type": "select",
"name": "Empty Placeholder",
"description": "Show empty placeholder when there is no result",
"default_value": "n",
"options": [
{"value": "y", "text": "Yes"},
{"value": "n", "text": "No"}
]
}
]
}